Changeset 11048


Ignore:
Timestamp:
2006-01-17T10:37:29+13:00 (18 years ago)
Author:
mdewsnip
Message:

Replaced some "PlugIn" with "Plugin".

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

Legend:

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

    r11028 r11048  
    4444import org.greenstone.gatherer.util.Utility;
    4545
    46 /** This class provides us with a dialog box which allows us to edit the arguments of either a PlugIn or a Classifier.
     46/** This class provides us with a dialog box which allows us to edit the arguments of either a Plugin or a Classifier.
    4747 * @author John Thompson, Greenstone Digital Library, University of Waikato
    4848 * @version 2.3
    4949 * @see org.greenstone.gatherer.cdm.Classifier
    50  * @see org.greenstone.gatherer.cdm.PlugIn
     50 * @see org.greenstone.gatherer.cdm.Plugin
    5151 */
    5252public class ArgumentConfiguration
  • trunk/gli/src/org/greenstone/gatherer/cdm/CollectionConfiguration.java

    r10963 r11048  
    7171    }
    7272
    73     /** Find the best insertion position for the given DOM Element. This should try to match command tag, and if found should then try to group by name or type (eg CollectionMeta), or append to end is no such grouping exists (eg PlugIns). Failing a command match it will check against the command order for the best insertion location.
     73    /** Find the best insertion position for the given DOM Element. This should try to match command tag, and if found should then try to group by name or type (eg CollectionMeta), or append to end is no such grouping exists (eg Plugins). Failing a command match it will check against the command order for the best insertion location.
    7474     * @param target_element the command Element to be inserted
    7575     * @return the Element which the given command should be inserted before, or null to append to end of list
     
    914914            }
    915915            if(command_element == null && command_type.equals(PLUGIN_STR)) {
    916             command_element = parsePlugIn(command_str);
     916            command_element = parsePlugin(command_str);
    917917            }
    918918            if(command_element == null && command_type.equals(SEARCHTYPE_STR)) {
     
    13171317    }
    13181318
    1319     private Element parsePlugIn(String command_str) {
     1319    private Element parsePlugin(String command_str) {
    13201320    Element command_element = null;
    13211321    boolean use_metadata_files = false;
  • trunk/gli/src/org/greenstone/gatherer/cdm/GeneralManager.java

    r11038 r11048  
    625625     * @see org.greenstone.gatherer.cdm.SubcollectionManager
    626626     * @see org.greenstone.gatherer.cdm.TranslationView
    627      * @see org.greenstone.gatherer.cdm.PlugInManager
     627     * @see org.greenstone.gatherer.cdm.PluginManager
    628628     */
    629629    public void valueChanged(TreeSelectionEvent event) {
Note: See TracChangeset for help on using the changeset viewer.