Ignore:
Timestamp:
2006-07-26T13:07:24+12:00 (18 years ago)
Author:
kjdon
Message:

removed gui.ArgumentControl class and ArgumentConfiguration inner class Argument control, and added a new class cdm/ArgumentControl.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/ExplodeMetadataPrompt.java

    r12292 r12305  
    4242import org.greenstone.gatherer.LocalGreenstone;
    4343import org.greenstone.gatherer.cdm.Argument;
     44import org.greenstone.gatherer.cdm.ArgumentControl;
    4445import org.greenstone.gatherer.cdm.CollectionDesignManager;
    4546import org.greenstone.gatherer.cdm.Plugin;
     
    198199       
    199200    // first we add the plugin arg
    200     ArgumentControl argument_control = new ArgumentControl(plugin_arg,true, null);
     201    ArgumentControl argument_control = new ArgumentControl(plugin_arg, true, null);
    201202    argument_control.setBackground(Configuration.getColor("coloring.collection_heading_background", false));
    202203    options_pane.add((JComponent)argument_control);
     
    209210        }
    210211        // by default, all args are disabled, and no value
    211         argument_control = new ArgumentControl(argument,false, null);
     212        argument_control = new ArgumentControl(argument, false, null);
    212213        // make sure they are coloured the way we want - this is not the standard arg control coloring
    213214        argument_control.setBackground(Configuration.getColor("coloring.collection_heading_background", false));
Note: See TracChangeset for help on using the changeset viewer.