Changeset 5238 for openmrs-modules/addresshierarchy/src/org/openmrs/module/addresshierarchy/db/AddressHierarchyDAO.java
- Timestamp:
- 08/11/08 16:11:10 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/addresshierarchy
- Property svn:ignore set to
dist
build
- Property svn:ignore set to
openmrs-modules/addresshierarchy/src/org/openmrs/module/addresshierarchy/db/AddressHierarchyDAO.java
r4787 r5238 6 6 7 7 import org.openmrs.module.addresshierarchy.AddressHierarchy; 8 import org.openmrs.module.addresshierarchy.AddressHierarchyType; 8 9 9 10 public interface AddressHierarchyDAO{ … … 19 20 public List locationsLoader(Integer id,String str); 20 21 public String getCompleteLocations(); 22 public String[] getLocationType(); 23 public String[] getLocationTypeTable(); 24 public void updateLocationTypeTable(AddressHierarchyType aht); 25 public void loadTable(); 26 public void unloadTable(); 27 public String[] getAddressHierarchyTypeList(Integer typeid); 28 21 29 }