Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/24/08 14:37:02 (8 months ago)
Author:
bwolfe
Message:

Merging api-refactoring to trunk [3595]:[4355]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/trunk/src/api/org/openmrs/ConceptProposal.java

    r4095 r4358  
    1818import org.apache.commons.logging.Log; 
    1919import org.apache.commons.logging.LogFactory; 
     20import org.openmrs.util.OpenmrsConstants; 
    2021 
    2122/** 
     
    269270                this.mappedConcept = mappedConcept; 
    270271        } 
     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        } 
    271284 
    272285}