Ignore:
Timestamp:
2004-10-08T13:20:01+13:00 (20 years ago)
Author:
mdewsnip
Message:

Removed all occurrences of classes explicitly importing other classes in the same package.

Location:
trunk/gli/src/org/greenstone/gatherer/cdm
Files:
30 edited

Legend:

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

    r8236 r8243  
    3737import org.greenstone.gatherer.DebugStream;
    3838import org.greenstone.gatherer.Gatherer;
    39 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    4039import org.greenstone.gatherer.collection.Collection;
    4140import org.greenstone.gatherer.collection.CollectionManager;
  • trunk/gli/src/org/greenstone/gatherer/cdm/ArgumentConfiguration.java

    r8236 r8243  
    3535import org.greenstone.gatherer.Dictionary;
    3636import org.greenstone.gatherer.Gatherer;
    37 import org.greenstone.gatherer.cdm.Argument;
    38 import org.greenstone.gatherer.cdm.ArgumentContainer;
    39 import org.greenstone.gatherer.cdm.Classifier;
    40 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    41 import org.greenstone.gatherer.cdm.PlugIn;
    4237import org.greenstone.gatherer.gui.GComboBox;
    4338import org.greenstone.gatherer.gui.GLIButton;
  • trunk/gli/src/org/greenstone/gatherer/cdm/Classifier.java

    r8240 r8243  
    3434import java.io.*;
    3535import java.util.*;
    36 import org.greenstone.gatherer.cdm.Argument;
    37 import org.greenstone.gatherer.cdm.ArgumentContainer;
    38 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    39 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    40 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    4136import org.greenstone.gatherer.util.StaticStrings;
    4237import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/cdm/ClassifierManager.java

    r8236 r8243  
    4040import org.greenstone.gatherer.Dictionary;
    4141import org.greenstone.gatherer.Gatherer;
    42 import org.greenstone.gatherer.cdm.Argument;
    43 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    44 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    45 import org.greenstone.gatherer.cdm.CommandTokenizer;
    46 import org.greenstone.gatherer.cdm.Control;
    47 import org.greenstone.gatherer.cdm.Classifier;
    48 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    4942import org.greenstone.gatherer.file.FileNode;
    5043import org.greenstone.gatherer.gui.GComboBox;
  • trunk/gli/src/org/greenstone/gatherer/cdm/CollectionConfiguration.java

    r8236 r8243  
    3535import org.greenstone.gatherer.DebugStream;
    3636import org.greenstone.gatherer.Gatherer;
    37 import org.greenstone.gatherer.cdm.CommandTokenizer;
    3837import org.greenstone.gatherer.gui.GLIButton;
    3938import org.greenstone.gatherer.util.DOMTree;
  • trunk/gli/src/org/greenstone/gatherer/cdm/CollectionDesignManager.java

    r8236 r8243  
    3535import org.greenstone.gatherer.DebugStream;
    3636import org.greenstone.gatherer.Gatherer;
    37 import org.greenstone.gatherer.cdm.ClassifierManager;
    38 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    39 import org.greenstone.gatherer.cdm.CollectionMetaManager;
    40 import org.greenstone.gatherer.cdm.FormatManager;
    41 import org.greenstone.gatherer.cdm.GeneralManager;
    42 import org.greenstone.gatherer.cdm.IndexManager;
    43 import org.greenstone.gatherer.cdm.MetadataSetView;
    44 import org.greenstone.gatherer.cdm.PlugInManager;
    45 import org.greenstone.gatherer.cdm.SubcollectionManager;
    46 import org.greenstone.gatherer.cdm.TranslationView;
    4737import org.greenstone.gatherer.util.GSDLSiteConfig;
    4838import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/cdm/CollectionMeta.java

    r8240 r8243  
    2828
    2929import org.greenstone.gatherer.Configuration;
    30 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    31 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    32 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    33 import org.greenstone.gatherer.cdm.Index;
    3430import org.greenstone.gatherer.util.Codec;
    3531import org.greenstone.gatherer.util.StaticStrings;
  • trunk/gli/src/org/greenstone/gatherer/cdm/CollectionMetaManager.java

    r8236 r8243  
    3535import org.greenstone.gatherer.DebugStream;
    3636import org.greenstone.gatherer.Gatherer;
    37 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    38 import org.greenstone.gatherer.cdm.CollectionMeta;
    39 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    40 import org.greenstone.gatherer.cdm.Index;
    4137import org.greenstone.gatherer.util.StaticStrings;
    4238import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/cdm/DOMProxyListModel.java

    r8240 r8243  
    2929import java.util.*;
    3030import javax.swing.*;
    31 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3231import org.w3c.dom.*;
    3332
  • trunk/gli/src/org/greenstone/gatherer/cdm/Format.java

    r8015 r8243  
    3232 *               14/07/03 - DOM Support
    3333 **************************************************************************************/
    34 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    35 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    36 import org.greenstone.gatherer.cdm.Classifier;
    37 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3834import org.greenstone.gatherer.util.Codec;
    3935import org.greenstone.gatherer.util.XMLTools;
  • trunk/gli/src/org/greenstone/gatherer/cdm/FormatManager.java

    r8236 r8243  
    4141import org.greenstone.gatherer.Dictionary;
    4242import org.greenstone.gatherer.Gatherer;
    43 import org.greenstone.gatherer.cdm.Classifier;
    44 import org.greenstone.gatherer.cdm.ClassifierManager;
    45 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    46 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    47 import org.greenstone.gatherer.cdm.CommandTokenizer;
    48 import org.greenstone.gatherer.cdm.Control;
    49 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    50 import org.greenstone.gatherer.cdm.Format;
    5143import org.greenstone.gatherer.gui.GLIButton;
    5244import org.greenstone.gatherer.msm.ElementWrapper;
  • trunk/gli/src/org/greenstone/gatherer/cdm/GeneralManager.java

    r8236 r8243  
    3939import org.greenstone.gatherer.Dictionary;
    4040import org.greenstone.gatherer.Gatherer;
    41 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    42 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    43 import org.greenstone.gatherer.cdm.Control;
    4441import org.greenstone.gatherer.gui.EmailField;
    4542import org.greenstone.gatherer.gui.GLIButton;
  • trunk/gli/src/org/greenstone/gatherer/cdm/Index.java

    r8236 r8243  
    3030import org.greenstone.gatherer.DebugStream;
    3131import org.greenstone.gatherer.Gatherer;
    32 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    33 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    34 import org.greenstone.gatherer.cdm.CollectionMeta;
    35 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3632import org.greenstone.gatherer.msm.ElementWrapper;
    3733import org.greenstone.gatherer.util.StaticStrings;
  • trunk/gli/src/org/greenstone/gatherer/cdm/IndexManager.java

    r8236 r8243  
    3636import org.greenstone.gatherer.Dictionary;
    3737import org.greenstone.gatherer.Gatherer;
    38 import org.greenstone.gatherer.cdm.CollectionMeta;
    39 import org.greenstone.gatherer.cdm.CommandTokenizer;
    40 import org.greenstone.gatherer.cdm.Control;
    41 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    42 import org.greenstone.gatherer.cdm.Index;
    4338import org.greenstone.gatherer.checklist.CheckList;
    4439import org.greenstone.gatherer.gui.GComboBox;
  • trunk/gli/src/org/greenstone/gatherer/cdm/Language.java

    r7997 r8243  
    2828
    2929
    30 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    31 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    32 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3330import org.w3c.dom.*;
    3431
  • trunk/gli/src/org/greenstone/gatherer/cdm/LanguageListCellRenderer.java

    r5590 r8243  
    3333import java.awt.*;
    3434import javax.swing.*;
    35 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    3635
    3736/** Provides a renderer which transforms a language code (such as en or fr) into its appropriate name (English and French respectively) before generating the rubberstamping component. */
  • trunk/gli/src/org/greenstone/gatherer/cdm/LanguageManager.java

    r8236 r8243  
    4242import org.greenstone.gatherer.Dictionary;
    4343import org.greenstone.gatherer.Gatherer;
    44 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    45 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    46 import org.greenstone.gatherer.cdm.Control;
    47 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    48 import org.greenstone.gatherer.cdm.Language;
    49 import org.greenstone.gatherer.cdm.LanguageListCellRenderer;
    5044import org.greenstone.gatherer.gui.GLIButton;
    5145import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/cdm/Level.java

    r8240 r8243  
    3131 * Revised:     
    3232 **************************************************************************************/
    33 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    34 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    35 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3633import org.w3c.dom.*;
    3734
  • trunk/gli/src/org/greenstone/gatherer/cdm/MetadataSetView.java

    r8236 r8243  
    3636import org.greenstone.gatherer.Dictionary;
    3737import org.greenstone.gatherer.Gatherer;
    38 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    39 import org.greenstone.gatherer.cdm.Control;
    40 import org.greenstone.gatherer.cdm.ElementWrapper;
    4138import org.greenstone.gatherer.gui.GLIButton;
    4239import org.greenstone.gatherer.mem.MetadataEditorManager;
  • trunk/gli/src/org/greenstone/gatherer/cdm/PlugIn.java

    r8240 r8243  
    2929import java.io.*;
    3030import java.util.*;
    31 import org.greenstone.gatherer.cdm.Argument;
    32 import org.greenstone.gatherer.cdm.ArgumentContainer;
    33 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3431import org.greenstone.gatherer.util.StaticStrings;
    3532import org.w3c.dom.*;
  • trunk/gli/src/org/greenstone/gatherer/cdm/PlugInManager.java

    r8236 r8243  
    4141import org.greenstone.gatherer.Dictionary;
    4242import org.greenstone.gatherer.Gatherer;
    43 import org.greenstone.gatherer.cdm.Argument;
    44 import org.greenstone.gatherer.cdm.ArgumentConfiguration;
    45 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    46 import org.greenstone.gatherer.cdm.CommandTokenizer;
    47 import org.greenstone.gatherer.cdm.Control;
    48 import org.greenstone.gatherer.cdm.PlugIn;
    4943import org.greenstone.gatherer.gui.GComboBox;
    5044import org.greenstone.gatherer.gui.GLIButton;
  • trunk/gli/src/org/greenstone/gatherer/cdm/SearchType.java

    r8240 r8243  
    3131 * Revised:     
    3232 **************************************************************************************/
    33 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    34 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    35 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3633import org.w3c.dom.*;
    3734
  • trunk/gli/src/org/greenstone/gatherer/cdm/SearchTypeManager.java

    r8236 r8243  
    4040import org.greenstone.gatherer.Dictionary;
    4141import org.greenstone.gatherer.Gatherer;
    42 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    43 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    44 import org.greenstone.gatherer.cdm.Control;
    45 import org.greenstone.gatherer.cdm.SearchType;
    46 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    4742import org.greenstone.gatherer.gui.GComboBox;
    4843import org.greenstone.gatherer.gui.GLIButton;
  • trunk/gli/src/org/greenstone/gatherer/cdm/Subcollection.java

    r8015 r8243  
    2828
    2929import org.greenstone.gatherer.Gatherer;
    30 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    31 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    32 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3330import org.greenstone.gatherer.msm.ElementWrapper;
    3431import org.greenstone.gatherer.util.StaticStrings;
  • trunk/gli/src/org/greenstone/gatherer/cdm/SubcollectionIndex.java

    r8240 r8243  
    2929import java.util.*;
    3030import org.greenstone.gatherer.DebugStream;
    31 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    32 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    33 import org.greenstone.gatherer.cdm.CollectionMeta;
    34 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3531import org.greenstone.gatherer.util.StaticStrings;
    3632import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/cdm/SubcollectionIndexManager.java

    r8236 r8243  
    3636import org.greenstone.gatherer.Dictionary;
    3737import org.greenstone.gatherer.Gatherer;
    38 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    39 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    40 import org.greenstone.gatherer.cdm.Control;
    41 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    42 import org.greenstone.gatherer.cdm.Subcollection;
    43 import org.greenstone.gatherer.cdm.SubcollectionIndex;
    4438import org.greenstone.gatherer.gui.GLIButton;
    4539import org.greenstone.gatherer.util.ExclusiveListSelectionListener;
  • trunk/gli/src/org/greenstone/gatherer/cdm/SubcollectionManager.java

    r8236 r8243  
    4040import org.greenstone.gatherer.Dictionary;
    4141import org.greenstone.gatherer.Gatherer;
    42 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    43 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    44 import org.greenstone.gatherer.cdm.Control;
    45 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    46 import org.greenstone.gatherer.cdm.Subcollection;
    4742import org.greenstone.gatherer.gui.GLIButton;
    4843import org.greenstone.gatherer.gui.NonWhitespaceField;
  • trunk/gli/src/org/greenstone/gatherer/cdm/SuperCollection.java

    r5590 r8243  
    3131 * Revised:     
    3232 **************************************************************************************/
    33 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    34 import org.greenstone.gatherer.cdm.DOMProxyListEntry;
    3533import org.w3c.dom.Element;
    3634
  • trunk/gli/src/org/greenstone/gatherer/cdm/SuperCollectionManager.java

    r8236 r8243  
    3636import org.greenstone.gatherer.Dictionary;
    3737import org.greenstone.gatherer.Gatherer;
    38 import org.greenstone.gatherer.cdm.DOMProxyListModel;
    3938import org.greenstone.gatherer.checklist.CheckList;
    4039import org.greenstone.gatherer.checklist.Entry;
  • trunk/gli/src/org/greenstone/gatherer/cdm/TranslationView.java

    r8240 r8243  
    3636import org.greenstone.gatherer.DebugStream;
    3737import org.greenstone.gatherer.Dictionary;
    38 import org.greenstone.gatherer.cdm.CollectionConfiguration;
    39 import org.greenstone.gatherer.cdm.CollectionDesignManager;
    40 import org.greenstone.gatherer.cdm.CollectionMeta;
    41 import org.greenstone.gatherer.cdm.Control;
    42 import org.greenstone.gatherer.cdm.Index;
    43 import org.greenstone.gatherer.cdm.LanguageListCellRenderer;
    44 import org.greenstone.gatherer.cdm.SubcollectionIndex;
    4538import org.greenstone.gatherer.gui.GLIButton;
    4639
Note: See TracChangeset for help on using the changeset viewer.