Changeset 8601


Ignore:
Timestamp:
2004-11-18T16:45:49+13:00 (19 years ago)
Author:
mdewsnip
Message:

Renamed the two "PlugIn" classes to "Plugin", for our sanity.

Location:
trunk/gli/src/org/greenstone/gatherer
Files:
2 added
2 deleted
3 edited

Legend:

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

    r8597 r8601  
    6767    static public MetadataSetView metadataset_view;
    6868    /** A list of plugins to use at build time. */
    69     static public PlugInManager plugin_manager;
     69    static public PluginManager plugin_manager;
    7070    /** The manager in charge of all aspects of searchtypes. We also ask this manager whether we are MG or MGPP enabled. */
    7171    static public SearchTypeManager searchtype_manager;
     
    101101     * @see org.greenstone.gatherer.cdm.LanguageManager
    102102     * @see org.greenstone.gatherer.cdm.MetadataSetView
    103      * @see org.greenstone.gatherer.cdm.PlugInManager
     103     * @see org.greenstone.gatherer.cdm.PluginManager
    104104     * @see org.greenstone.gatherer.cdm.SearchTypeManager
    105105     * @see org.greenstone.gatherer.cdm.SubcollectionIndexManager
     
    124124
    125125    metadataset_view = new MetadataSetView();
    126     plugin_manager = new PlugInManager();
     126    plugin_manager = new PluginManager();
    127127    plugin_manager.placeSeparator();
    128128    subcollection_manager = new SubcollectionManager();
  • trunk/gli/src/org/greenstone/gatherer/gems/GEMSPreferences.java

    r8590 r8601  
    4040import org.greenstone.gatherer.cdm.ClassifierManager;
    4141import org.greenstone.gatherer.cdm.LanguageManager;
    42 import org.greenstone.gatherer.cdm.PlugInManager;
     42import org.greenstone.gatherer.cdm.PluginManager;
    4343import org.greenstone.gatherer.checklist.CheckList;
    4444import org.greenstone.gatherer.collection.Collection;
     
    475475        // delete the plugins and classifiers.dat files
    476476               
    477         PlugInManager.clearPlugInCache();
     477        PluginManager.clearPluginCache();
    478478        ClassifierManager.clearClassifierCache();
    479479        }
  • trunk/gli/src/org/greenstone/gatherer/gui/Preferences.java

    r8590 r8601  
    3939import org.greenstone.gatherer.cdm.ClassifierManager;
    4040import org.greenstone.gatherer.cdm.LanguageManager;
    41 import org.greenstone.gatherer.cdm.PlugInManager;
     41import org.greenstone.gatherer.cdm.PluginManager;
    4242import org.greenstone.gatherer.checklist.CheckList;
    4343import org.greenstone.gatherer.checklist.CheckListEntry;
     
    651651        Configuration.setLocale("general.locale", Configuration.GENERAL_SETTING, ((DictionaryEntry)language_combobox.getSelectedItem()).getLocale());
    652652        // delete the plugins and classifiers.dat files
    653         PlugInManager.clearPlugInCache();
     653        PluginManager.clearPluginCache();
    654654        ClassifierManager.clearClassifierCache();
    655655        }
Note: See TracChangeset for help on using the changeset viewer.