Changeset 12801


Ignore:
Timestamp:
2006-09-21T11:56:17+12:00 (18 years ago)
Author:
mdewsnip
Message:

Removed more unnecessary stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/download/Download.java

    r12797 r12801  
    3434import org.greenstone.gatherer.cdm.*;
    3535
    36 /** This class is responsible for storing information from a parsed classinfo.pl call in such a way that it allows easy access to parsed details for the purposes of user design and specification of downloads.
     36
     37/** This class is responsible for storing information from a parsed downloadinfo.pl call in such a way that it allows easy access to parsed details for the purposes of user design and specification of downloads.
    3738 * @author John Thompson, Greenstone Digital Library, University of Waikato
    3839 * @version 2.3
    3940 */
    40 public class Download  extends ArgumentContainer
    41     {
    42 
    43     static final public String DOWNLOAD_PREFIX = "CL";
    44 
     41public class Download
     42    extends ArgumentContainer
     43{
    4544    private boolean is_abstract = false;
    4645
     
    5150    /** A description of this download. */
    5251    private String description = null;
    53     /** The name of the download as it would appear in the collect.cfg file. */
    5452    private String name = null;
    55     /** This string is filled out the first time this download is created, and remains unchanged there-after. It is used to match up with Format commands that may not yet have been instantiated (and thus only have offline references along the lines of 'CL1' to figure out what Download they want.) */
    56     private String old_position_string = null;
    57 
    58     /** Constructor used only in DOMProxyListModel initializations.
    59      */
     53
     54
    6055    public Download() {
    6156    }
     
    8378    }
    8479
    85      /** The assigned download constructor.
    86       * @param element the DOM Element this classifier is based upon
     80    /** Probably not used.
    8781     */
    8882    public DOMProxyListEntry create(Element element) {
Note: See TracChangeset for help on using the changeset viewer.