Changeset 5840


Ignore:
Timestamp:
2003-11-13T16:46:51+13:00 (20 years ago)
Author:
kjdon
Message:

added in options for exporting collections

File:
1 edited

Legend:

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

    r5785 r5840  
    7474    static final public int NEW = 2;
    7575    /** Element in process type enumeration. */
    76     static final public int OTHER = 3;
     76    static final public int EXPORT = 3;
     77    /** Element in process type enumeration. */
     78    static final public int OTHER = 4;
    7779    /** Element in status type enumeration. */
    7880    static final public int ERROR = 0;
     
    8587    /** Element in process type name enumeration. */
    8688    static public String GSHELL_NEW = "gshell_new";
     89    /** Element in process type name enumeration */
     90    static public String GSHELL_EXPORT = "gshell_export";
     91   
    8792    /** Constructor gatherer all the data required to create a new process, and emit meaningfull messages.
    8893     * @param args A <strong>String[]</strong> containing the arguments to the process thread, including the name of the executable.
     
    300305        name = Dictionary.get("GShell.New");
    301306        break;
     307    case EXPORT:
     308        name= Dictionary.get("GShell.Export");
     309        break;
    302310    default:
    303311        name = Dictionary.get("GShell.Other");
Note: See TracChangeset for help on using the changeset viewer.