Ignore:
Timestamp:
2003-10-03T14:07:35+12:00 (21 years ago)
Author:
mdewsnip
Message:

Many more small improvements and tooltips added. Still more to come!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/msm/MetadataSetManager.java

    r5305 r5564  
    1 package org.greenstone.gatherer.msm;
    21/**
    32 *#########################################################################
     
    3635 *########################################################################
    3736 */
     37package org.greenstone.gatherer.msm;
     38
    3839import java.io.*;
    3940import java.util.*;
     
    4142import javax.swing.filechooser.*;
    4243import org.greenstone.gatherer.Configuration;
     44import org.greenstone.gatherer.Dictionary;
    4345import org.greenstone.gatherer.Gatherer;
    4446import org.greenstone.gatherer.cdm.CommandTokenizer;
     
    6163import org.w3c.dom.*;
    6264import org.xml.sax.*;
     65
    6366/** This class is responsible for managing all the metadata sets in the collection and for providing methods for manipulating the aforementioned sets contents.
    6467 * @author John Thompson, Greenstone Digital Library, University of Waikato
     
    545548    javax.swing.filechooser.FileFilter filter = new MDSFileFilter();
    546549    chooser.setFileFilter(filter);
    547     int returnVal = chooser.showDialog(Gatherer.g_man, Gatherer.dictionary.get("MSMPrompt.File_Import"));
     550    int returnVal = chooser.showDialog(Gatherer.g_man, Dictionary.newget("MSMPrompt.File_Import"));
    548551    if(returnVal == JFileChooser.APPROVE_OPTION) {
    549552        return importMDS(chooser.getSelectedFile(), true);
Note: See TracChangeset for help on using the changeset viewer.