Changeset 4358 for openmrs/trunk/src/api/org/openmrs/ConceptProposal.java
- Timestamp:
- 05/24/08 14:37:02 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/trunk/src/api/org/openmrs/ConceptProposal.java
r4095 r4358 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 }