Ignore:
Timestamp:
2004-10-08T12:26:44+13:00 (20 years ago)
Author:
mdewsnip
Message:

Removed unnecessary imports of org.greenstone.gatherer.Gatherer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/util/AppendLineOnlyFileDocument.java

    r8236 r8240  
    3939import javax.swing.text.*;
    4040import org.greenstone.gatherer.DebugStream;
    41 import org.greenstone.gatherer.Gatherer;
    4241import org.greenstone.gatherer.gui.GLIButton;
    4342import org.greenstone.gatherer.util.StaticStrings;
     
    7776    /** The constructor is responsible for creating several necessary data structures as well as opening the random access file. When it creates the new file, as it is wont to do, it will immediately add the special header line defined above.
    7877     * @param filename the absolute path name of the file as a String
    79      * @see org.greenstone.gatherer.Gatherer#println
    80      * @see org.greenstone.gatherer.Gatherer#printStackTrace
    8178     * @see org.greenstone.gatherer.util.AppendLineOnlyFileDocument.AppendLineOnlyFileDocumentElement
    8279     * @see org.greenstone.gatherer.util.AppendLineOnlyFileDocument.WriterThread
     
    131128    /** Append some content after the document.
    132129     * @param str the String to add as a new line in the document
    133      * @see org.greenstone.gatherer.Gatherer#printStackTrace
    134130     * @see org.greenstone.gatherer.util.AppendLineOnlyFileDocument.AppendLineOnlyFileDocumentElement
    135131     * @see org.greenstone.gatherer.util.AppendLineOnlyFileDocument.AppendLineOnlyFileDocumentEvent
     
    178174
    179175    /** The destructor is implemented to ensure the current log file has finished transferring from memory to disk, and that the random access file is properly closed, before GLI exits.
    180      * @see org.greenstone.gatherer.Gatherer#println
    181      * @see org.greenstone.gatherer.Gatherer#printStackTrace
    182176     * @see org.greenstone.gatherer.util.AppendLineOnlyFileDocument.WriterThread#finish
    183177     */
     
    240234     * @param offset the starting offset for the fragment of text required, as an int
    241235     * @param l the length of the text, also as an int
    242      * @see org.greenstone.gatherer.Gatherer#printStackTrace
    243236     * @see org.greenstone.gatherer.util.AppendLineOnlyFileDocument.AppendLineOnlyFileDocumentElement
    244237     * @see org.greenstone.gatherer.util.StaticStrings#EMPTY_STR
     
    358351    /** To record the final state of the logging process we reserve a single character at the start of the file, and then replace it when the build process is complete.
    359352     * @param character the final status char to replace the X at the start of the log
    360      * @see org.greenstone.gatherer.Gatherer#printStackTrace
    361353     */
    362354    public synchronized void setSpecialCharacter(char character) {
     
    779771
    780772    /** The run method of this thread checks if there are any document elements queued to be written to file, and then writes them as necessary.
    781      * @see org.greenstone.gatherer.Gatherer#printStackTrace
    782773     * @see org.greenstone.gatherer.util.AppendLineOnlyFileDocument
    783774     * @see org.greenstone.gatherer.util.AppendLineOnlyFileDocument.AppendLineOnlyFileDocumentElement
     
    886877    /** Print a message to the GLI debug file stream.
    887878     * @param message the message to be written as a String
    888      * @see org.greenstone.gatherer.Gatherer#println
    889879     */
    890880    static synchronized public void print(String message) {
Note: See TracChangeset for help on using the changeset viewer.