Ignore:
Timestamp:
2003-11-05T13:46:44+13:00 (21 years ago)
Author:
mdewsnip
Message:

Commented out about 60 unused functions.

Location:
trunk/gli/src/org/greenstone/gatherer/gui
Files:
4 edited

Legend:

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

    r5593 r5785  
    317317     * @return The build <strong>GShellProgressMonitor</strong>.
    318318     */
    319     public GShellProgressMonitor getBuildProgress() {
     319    /* private GShellProgressMonitor getBuildProgress() {
    320320    return build_monitor;
    321     }
     321    } */
    322322
    323323    /** Method to acquire the progress monitor associated with copying.
    324324     * @return The copying <strong>GShellProgressMonitor</strong>.
    325325     */
    326     public GShellProgressMonitor getCopyProgress() {
     326    /* private GShellProgressMonitor getCopyProgress() {
    327327    return copy_monitor;
    328     }
     328    } */
    329329
    330330    /** Method to acquire the progress monitor associated with import.
    331331     * @return The import <strong>GShellProgressMonitor</strong>.
    332332     */
    333     public GShellProgressMonitor getImportProgress() {
     333    /* private GShellProgressMonitor getImportProgress() {
    334334    return import_monitor;
    335     }
     335    } */
    336336
    337337    /** We are informed when this view pane loses focus so we can update build options. */
  • trunk/gli/src/org/greenstone/gatherer/gui/LongProgressBar.java

    r5589 r5785  
    8585    }
    8686
    87     public void refreshString() {
     87    /* private void refreshString() {
    8888    safeSetString(previous + "%");
    89     }
     89    } */
    9090
    9191    public void reset() {
  • trunk/gli/src/org/greenstone/gatherer/gui/MenuBar.java

    r5593 r5785  
    382382
    383383    /** Set the enabled state of one of the help menu items, based on its 'tabs' current state. Note that this method should only be called from the AWTEvent thread. */
    384     public void tabEnabled(int tab_index, boolean state) {
     384    /* private void tabEnabled(int tab_index, boolean state) {
    385385    JMenuItem selected = help.getItem(tab_index + 2); // Remember general and separator items
    386386    selected.setEnabled(state);
    387     }
     387    } */
    388388
    389389    /** In order to provide context aware help advice we keep track of which
  • trunk/gli/src/org/greenstone/gatherer/gui/SmarterTextArea.java

    r5589 r5785  
    6363
    6464    /** we want to be able to set the text without the user being able to */
    65     public void systemSetText(String text) {
     65    /* private void systemSetText(String text) {
    6666    init = true;
    6767    setText(text);
    6868    init = false;
    69     }
     69    } */
    7070
    7171    private class UnchangingDocument
Note: See TracChangeset for help on using the changeset viewer.