Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
08/11/08 16:11:10 (5 months ago)
Author:
machosry
Message:

address hierarchy: completed few enhancements suggested in the dev call. still the portlet overriding is not solved yet.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs-modules/addresshierarchy

    • Property svn:ignore set to
      dist
      build
  • openmrs-modules/addresshierarchy/src/org/openmrs/module/addresshierarchy/db/AddressHierarchyDAO.java

    r4787 r5238  
    66 
    77import org.openmrs.module.addresshierarchy.AddressHierarchy; 
     8import org.openmrs.module.addresshierarchy.AddressHierarchyType; 
    89 
    910public interface AddressHierarchyDAO{ 
     
    1920        public List locationsLoader(Integer id,String str); 
    2021    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 
    2129}