- Timestamp:
- 05/16/08 13:28:28 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/api_refactoring/src/api/org/openmrs/ConceptProposal.java
r4198 r4240 18 18 import org.apache.commons.logging.Log; 19 19 import org.apache.commons.logging.LogFactory; 20 import org.openmrs.util.OpenmrsConstants; 20 21 21 22 /** … … 269 270 this.mappedConcept = mappedConcept; 270 271 } 272 273 /** 274 * Convenience method to mark this proposal as rejected. 275 * 276 * Be sure to call Context.getConceptService().saveConceptProposal(/thisObject/) 277 * after calling this method 278 * 279 */ 280 public void rejectConceptProposal() { 281 setState(OpenmrsConstants.CONCEPT_PROPOSAL_REJECT); 282 setFinalText(""); 283 } 271 284 272 285 }