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/MetadataSet.java

    r5154 r5564  
    1 package org.greenstone.gatherer.msm;
    21/**
    32 *#########################################################################
     
    3635 *########################################################################
    3736 */
     37package org.greenstone.gatherer.msm;
     38
    3839import java.io.*;
    3940import java.net.*;
    4041import java.util.*;
    4142import org.apache.xerces.dom.*;
     43import org.greenstone.gatherer.Dictionary;
    4244import org.greenstone.gatherer.Gatherer;
    4345import org.greenstone.gatherer.valuetree.GValueModel;
     
    102104        ElementWrapper value_element = new ElementWrapper((Element)elements.item(i));
    103105        File value_file = new File(file.getParentFile(), value_element.getName() + ".mdv");
    104                 ///ystem.err.println("Searching for " + value_file.getAbsolutePath());
     106        ///ystem.err.println("Searching for " + value_file.getAbsolutePath());
    105107        if(value_file.exists()) {
    106108        Document value_document = Utility.parse(value_file, false);
     
    354356                // Failing all that set an error message
    355357        if(description == null) {
    356         description = Gatherer.dictionary.get("MSM.No_Description");
     358        description = Dictionary.newget("MSM.No_Description");
    357359        }
    358360    }
     
    461463                // Failing all that set an error message
    462464        if(name == null) {
    463         name = Gatherer.dictionary.get("MSM.No_Name");
     465        name = Dictionary.newget("MSM.No_Name");
    464466        }
    465467    }
Note: See TracChangeset for help on using the changeset viewer.