Changeset 4623 for trunk/gli


Ignore:
Timestamp:
2003-06-12T18:06:01+12:00 (21 years ago)
Author:
kjdon
Message:

indented teh comments, added a hide method, and changed the name of isValueAdjusting() to isProcessing()

File:
1 edited

Legend:

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

    r4463 r4623  
    4848     * public CustomClassifier(Gatherer gatherer);
    4949      */
    50     /** Create a blank copy of this pseudo-classifier.
    51       * @return A newly allocated <strong>CustomClassifier</strong>.
    52       */
     50    /** Create a blank copy of this pseudo-classifier.
     51     * @return A newly allocated <strong>CustomClassifier</strong>.
     52     */
    5353    public CustomClassifier copy();
    5454    /** Destructor. */
    5555    public void destroy();
    5656    /** Show the controls for configuring this pseudo-classifier.
    57       * @param show <i>true</i> if the component should immediately show itself, <i>false</i> if you just wish to initialize components.
    58       */
     57     * @param show <i>true</i> if the component should immediately show itself, <i>false</i> if you just wish to initialize components.
     58     */
     59    public void hide();
    5960    public boolean display(boolean show);
    6061    /** Method to return this pseudo-classifier represented as a String.
    61       * @return A <strong>String</strong>.
    62       */
     62     * @return A <strong>String</strong>.
     63     */
    6364    public String getCommand();
    6465    /** Retrieve the custom command, a command line that overrides and replaces some other 'actual' classifier.
    65       * @param index The number of the classifer this one is replacing.
    66       */
     66     * @param index The number of the classifer this one is replacing.
     67     */
    6768    public String getCustomCommand(int index);
    6869    /** Get the name of this custom classifier.
    69       * @return A <strong>String</strong> representing the name.
    70       */
     70     * @return A <strong>String</strong> representing the name.
     71     */
    7172    public String getName();
    7273    public void process(FileNode record);
     
    7778    public void recreate(Classifier classifier, String separations);
    7879    /** Sets the value of Gatherer, for those classes loaded dynamically.
    79       * @param gatherer A reference to the <strong>Gatherer</strong>.
    80       */
     80     * @param gatherer A reference to the <strong>Gatherer</strong>.
     81     */
    8182    public void setGatherer(Gatherer gatherer);
    8283    /** Sets the Classifier manager in charge of this classifier.
    83       * @param manager This classifiers <strong>ClassifierManager</strong>.
    84       */
     84     * @param manager This classifiers <strong>ClassifierManager</strong>.
     85     */
    8586    public void setManager(ClassifierManager manager);
    86 
    87     /** Determines if the classifier is currently adjusting values, in which case we don't want to tell it to do anything new or else it might get stuck in a infinite loop. */
    88     public boolean valueIsAdjusting();
     87   
     88    /** Determines if the classifier is currenlty processing values, in which case we don't want to tell it to do anything new or else it might get stuck in a infinite loop. */
     89    public boolean isProcessing();
    8990}
Note: See TracChangeset for help on using the changeset viewer.