Ignore:
Timestamp:
2004-10-08T13:20:01+13:00 (20 years ago)
Author:
mdewsnip
Message:

Removed all occurrences of classes explicitly importing other classes in the same package.

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

Legend:

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

    r7924 r8243  
    3737package org.greenstone.gatherer.shell;
    3838
    39 /** Title:        The Gatherer<br>
    40  *  Description:  The Gatherer: a tool for gathering and enriching digital collections.<br>
    41  *  Copyright:    Copyright (c) 2001<br>
    42  *  Company:      The University of Waikato<br>
    43  *  Written:        /  /01<br>
    44  *  Revised:      12/05/02 - Commented<br>
    45  *                29/05/02 - Moved into correct package<br>
    46  *  @author John Thompson, Greenstone Digital Libraries
    47  *  @version 2.1 */
    4839
    4940import java.awt.Component;
    5041import java.util.ArrayList;
    5142import javax.swing.JProgressBar;
    52 import org.greenstone.gatherer.shell.GShellEvent;
    53 import org.greenstone.gatherer.shell.GShellProgressMonitor;
    5443
    5544/** This is the most basic implementation of <i>GShellProgressMonitor</i> in that it doesn't even attempt to parse the process messages. Instead it has one graphic which is displayed once the start() method is called, and another which appears after the stop().
  • trunk/gli/src/org/greenstone/gatherer/shell/GBuildProgressMonitor.java

    r8236 r8243  
    4545import org.greenstone.gatherer.Gatherer;
    4646import org.greenstone.gatherer.cdm.CollectionDesignManager;
    47 import org.greenstone.gatherer.shell.GImportProgressMonitor;
    48 import org.greenstone.gatherer.shell.GShellElement;
    49 import org.greenstone.gatherer.shell.GShellEvent;
    50 import org.greenstone.gatherer.shell.GShellProgressMonitor;
    5147import org.greenstone.gatherer.util.StaticStrings;
    5248/** This implementation of <i>GShellProgressMonitor</i> is designed to parse and translate the progress of a buildcol.pl call.
  • trunk/gli/src/org/greenstone/gatherer/shell/GImportProgressMonitor.java

    r8236 r8243  
    3838
    3939import java.awt.Component;
    40 import java.util.ArrayList;
    41 import java.util.StringTokenizer;
     40import java.util.*;
    4241import javax.swing.JProgressBar;
    4342import org.greenstone.gatherer.Configuration;
     
    4544import org.greenstone.gatherer.Dictionary;
    4645import org.greenstone.gatherer.Gatherer;
    47 import org.greenstone.gatherer.shell.GShellElement;
    48 import org.greenstone.gatherer.shell.GShellProgressMonitor;
    4946import org.greenstone.gatherer.util.StaticStrings;
    5047
  • trunk/gli/src/org/greenstone/gatherer/shell/GShell.java

    r8236 r8243  
    5353import org.greenstone.gatherer.cdm.CollectionMeta;
    5454import org.greenstone.gatherer.msm.GreenstoneArchiveParser;
    55 import org.greenstone.gatherer.shell.GShellListener;
    56 import org.greenstone.gatherer.shell.GShellProgressMonitor;
    5755import org.greenstone.gatherer.util.StaticStrings;
    5856import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/shell/GShellProgressMonitor.java

    r7924 r8243  
    5151import java.util.ArrayList;
    5252import javax.swing.JProgressBar;
    53 import org.greenstone.gatherer.shell.GShellEvent;
    5453
    5554/** When implemented, this interface allows another class to monitor the progress of a <strong>GShell</strong> process. Specifically implementing classes should be designed to take the textual output from the process and then translate that message into some quanitive measure of progress which can then be shown on the progress bar.
Note: See TracChangeset for help on using the changeset viewer.