Ignore:
Timestamp:
2004-11-17T10:42:21+13:00 (19 years ago)
Author:
mdewsnip
Message:

Updated GEMS, by Attila Aros.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gems/MetadataSet.java

    r8392 r8581  
    6666    // the nmae of the collection if this set is collection-specific
    6767    private String collection = null;
    68     //I realize I should be using getters and setters, but for a quick fix
    69     public boolean set_changed = false;
     68    //set_changed is check in msm(metadatasetmanager).save() and if this is true then we save
     69    //the collection, otherwise we leave it as is
     70    private boolean setChanged = false;
    7071    private String current_language_code;
    7172    /** The description of this metadata set. Cached as it takes more computation time. */
     
    124125    }
    125126    }
    126     /** Conditional copy constructor.
     127 
     128    public boolean getSetChanged() {
     129       
     130        return setChanged;   
     131    }
     132    public void setSetChanged(boolean val) {
     133         
     134        setChanged = val;
     135    }
     136      /** Conditional copy constructor.
    127137     * @param original The original metadata set to copy from.
    128138     * @param condition An <i>int</i> which matches one of the tree pruning filter types.
Note: See TracChangeset for help on using the changeset viewer.