Ignore:
Timestamp:
2003-05-27T15:57:37+12:00 (21 years ago)
Author:
kjdon
Message:

re-tabbed the code for java

File:
1 edited

Legend:

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

    r4293 r4366  
    4444 */
    4545public interface CustomClassifier
    46     extends Comparable {
    47     /** Constructor.
    48       * public CustomClassifier(Gatherer gatherer);
     46    extends Comparable {
     47    /** Constructor.
     48     * public CustomClassifier(Gatherer gatherer);
    4949      */
    5050     /** Create a blank copy of this pseudo-classifier.
    5151      * @return A newly allocated <strong>CustomClassifier</strong>.
    5252      */
    53     public CustomClassifier copy();
    54     /** Destructor. */
    55     public void destroy();
    56     /** Show the controls for configuring this pseudo-classifier.
     53    public CustomClassifier copy();
     54    /** Destructor. */
     55    public void destroy();
     56    /** Show the controls for configuring this pseudo-classifier.
    5757      * @param show <i>true</i> if the component should immediately show itself, <i>false</i> if you just wish to initialize components.
    5858      */
    59     public boolean display(boolean show);
    60     /** Method to return this pseudo-classifier represented as a String.
     59    public boolean display(boolean show);
     60    /** Method to return this pseudo-classifier represented as a String.
    6161      * @return A <strong>String</strong>.
    6262      */
    63     public String getCommand();
    64     /** Retrieve the custom command, a command line that overrides and replaces some other 'actual' classifier.
     63    public String getCommand();
     64    /** Retrieve the custom command, a command line that overrides and replaces some other 'actual' classifier.
    6565      * @param index The number of the classifer this one is replacing.
    6666      */
    67     public String getCustomCommand(int index);
    68     /** Get the name of this custom classifier.
     67    public String getCustomCommand(int index);
     68    /** Get the name of this custom classifier.
    6969      * @return A <strong>String</strong> representing the name.
    7070      */
    71     public String getName();
    72     public void process(FileNode record);
    73     /** Recreate a CustomAZList given several parameters including the real classifier created during custom design.
    74       * @param classifier The real <strong>Classifier</strong>.
    75       * @param separations A <strong>String</strong> representing the choosen separations.
    76       */
    77     public void recreate(Classifier classifier, String separations);
    78     /** Sets the value of Gatherer, for those classes loaded dynamically.
     71    public String getName();
     72    public void process(FileNode record);
     73    /** Recreate a CustomAZList given several parameters including the real classifier created during custom design.
     74     * @param classifier The real <strong>Classifier</strong>.
     75     * @param separations A <strong>String</strong> representing the choosen separations.
     76     */
     77    public void recreate(Classifier classifier, String separations);
     78    /** Sets the value of Gatherer, for those classes loaded dynamically.
    7979      * @param gatherer A reference to the <strong>Gatherer</strong>.
    8080      */
    81     public void setGatherer(Gatherer gatherer);
    82     /** Sets the Classifier manager in charge of this classifier.
     81    public void setGatherer(Gatherer gatherer);
     82    /** Sets the Classifier manager in charge of this classifier.
    8383      * @param manager This classifiers <strong>ClassifierManager</strong>.
    8484      */
    85     public void setManager(ClassifierManager manager);
     85    public void setManager(ClassifierManager manager);
    8686}
Note: See TracChangeset for help on using the changeset viewer.