Changeset 25538


Ignore:
Timestamp:
2012-05-08T09:49:51+12:00 (12 years ago)
Author:
sjm84
Message:

A collection constructor can now be given a manifest file (for importing)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/build/CollectionConstructor.java

    r25537 r25538  
    2626    /** A flag used to determine if this process has been asked to cancel. */
    2727    protected boolean cancel = false;
     28    /** Stores the name of the manifest file (if one is needed) */
     29    protected String manifest_file = null;
    2830
    2931    public CollectionConstructor(String name)
     
    6769    {
    6870        this.process_params = params;
     71    }
     72   
     73    public void setManifestFile(String manifestFile)
     74    {
     75        this.manifest_file = manifestFile;
    6976    }
    7077
Note: See TracChangeset for help on using the changeset viewer.