Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/21/08 02:20:21 (6 months ago)
Author:
bwolfe
Message:

api-refactoring: adding fixes for concepts

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/branches/api_refactoring/src/api/org/openmrs/api/impl/ConceptServiceImpl.java

    r4240 r4290  
    256256         */ 
    257257        public List<Concept> getConceptsByName(String name) throws APIException { 
    258                 return dao.getConcepts(name, Context.getLocale(), true, null, null); 
     258                return getConcepts(name, Context.getLocale(), true, null, null); 
    259259        } 
    260260 
     
    379379         
    380380        /** 
    381          * Auto generated method comment 
     381         * Generic getConcepts method (used internally) to get concepts matching a  
     382         * on name 
    382383         *  
    383384         * @param name 
     
    869870        /** 
    870871         * @see org.openmrs.api.ConceptService#findConceptAnswers(String phrase, Locale locale,Concept concept, boolean includeRetired) 
     872         * @deprecated use {@link #getConceptAnswers(String, Locale, Concept)} 
    871873         */ 
    872874        public List<ConceptWord> findConceptAnswers(String phrase, Locale locale,