Ignore:
Timestamp:
2004-10-08T09:46:12+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all Gatherer.print* with DebugStream.print*.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/FormatManager.java

    r8231 r8236  
    3838import javax.swing.event.*;
    3939import org.greenstone.gatherer.Configuration;
     40import org.greenstone.gatherer.DebugStream;
    4041import org.greenstone.gatherer.Dictionary;
    4142import org.greenstone.gatherer.Gatherer;
     
    8586    super(CollectionDesignManager.collect_config.getDocumentElement(), CollectionConfiguration.FORMAT_ELEMENT, new Format());
    8687    this.model = this;
    87     Gatherer.println("FormatManager: parsed " + getSize() + " format statements.");
     88    DebugStream.println("FormatManager: parsed " + getSize() + " format statements.");
    8889    // Establish all of the format objects, so that classifier indexes are initially correct (subsequent refreshes of the model will be sufficient to keep these up to date, as long as we start with a live reference to a classifier.
    8990    int size = getSize();
     
    181182
    182183    private HashMap buildDefaultMappings(ArrayList features_model, ArrayList parts_model) {
    183     Gatherer.println("buildDefaultMappings(): replace me with something that reads in a data xml file.");
     184    DebugStream.println("buildDefaultMappings(): replace me with something that reads in a data xml file.");
    184185    return new HashMap();
    185186    }
     
    201202
    202203    private ArrayList buildPartModel() {
    203     Gatherer.println("buildPartModel(): replace me with something that reads in a data xml file.");
     204    DebugStream.println("buildPartModel(): replace me with something that reads in a data xml file.");
    204205    ArrayList part_model = new ArrayList();
    205206    part_model.add(new Part("", ""));
     
    212213
    213214    private ArrayList buildVariableModel() {
    214     Gatherer.println("buildVariableModel(): replace me with something that reads in a data xml file.");
     215    DebugStream.println("buildVariableModel(): replace me with something that reads in a data xml file.");
    215216    ArrayList variable_model = new ArrayList();
    216217    variable_model.add("[Text]");
Note: See TracChangeset for help on using the changeset viewer.