Ignore:
Timestamp:
2004-09-21T11:19:32+12:00 (20 years ago)
Author:
mdewsnip
Message:

More work on opening legacy collections and dealing with non-namespaced metadata.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/metadata/ProfileXMLFileManager.java

    r8127 r8128  
    1313
    1414
    15     static public ProfileXMLFile loadProfileXMLFile(File directory)
     15    static public void loadProfileXMLFile(File directory)
    1616    {
    1717    // Make sure the directory (metadata) exists
     
    2727
    2828    profile_xml_file = new ProfileXMLFile(profile_xml_file_file.getAbsolutePath());
    29     return profile_xml_file;
    3029    }
    3130
     
    3534    return profile_xml_file.getMetadataElementFor(metadata_element_name_full);
    3635    }
     36
     37
     38    static public void mapElement(String metadata_element_name_full, String target_metadata_element_name_full)
     39    {
     40    profile_xml_file.mapElement(metadata_element_name_full, target_metadata_element_name_full);
     41    }
    3742}
Note: See TracChangeset for help on using the changeset viewer.