Changeset 5034


Ignore:
Timestamp:
2003-07-25T16:31:18+12:00 (21 years ago)
Author:
jmt12
Message:

Added extra method so that progress monitors can be told that the collection is in the middle of saving.

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

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/shell/GBasicProgressMonitor.java

    r4364 r5034  
    103103    public void parse(String line) {
    104104    }
     105
     106    public void saving() {
     107    }
     108
    105109    /** Since the creator of this process monitor is actually in the GUI, this class provides the simpliest way to send a cancel process message between the two.
    106110      * @param state The desired state of the stop flag as a <strong>boolean</strong>.
  • trunk/gli/src/org/greenstone/gatherer/shell/GBuildProgressMonitor.java

    r4933 r5034  
    304304    }
    305305
     306    public void saving() {
     307    }
     308
    306309    /** Since the creator of this process monitor is actually in the GUI, this class provides the simpliest way to send a cancel process message between the two.
    307310      * @param state The desired state of the stop flag as a <strong>boolean</strong>.
  • trunk/gli/src/org/greenstone/gatherer/shell/GShellProgressMonitor.java

    r4364 r5034  
    7474     */
    7575    public boolean hasSignalledStop();
     76
    7677    /** Inform the progress bar that it should programatically increment progress by one step. */
    7778    public void increment();
     
    8081     */
    8182    public void parse(String line);
     83
     84    public void saving();
     85
    8286    /** Since the creator of this process monitor is actually in the GUI, this class provides the simpliest way to send a cancel process message between the two.
    8387     * @param state The desired state of the stop flag as a <strong>boolean</strong>.
Note: See TracChangeset for help on using the changeset viewer.