Changeset 4290 for openmrs/branches/api_refactoring/src/api/org/openmrs/api/impl/ConceptServiceImpl.java
- Timestamp:
- 05/21/08 02:20:21 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/api_refactoring/src/api/org/openmrs/api/impl/ConceptServiceImpl.java
r4240 r4290 256 256 */ 257 257 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); 259 259 } 260 260 … … 379 379 380 380 /** 381 * Auto generated method comment 381 * Generic getConcepts method (used internally) to get concepts matching a 382 * on name 382 383 * 383 384 * @param name … … 869 870 /** 870 871 * @see org.openmrs.api.ConceptService#findConceptAnswers(String phrase, Locale locale,Concept concept, boolean includeRetired) 872 * @deprecated use {@link #getConceptAnswers(String, Locale, Concept)} 871 873 */ 872 874 public List<ConceptWord> findConceptAnswers(String phrase, Locale locale,