view flys-client/src/main/java/de/intevation/flys/client/shared/model/CollectionRecord.java @ 67:74257b95567b

Added CollectionItems and Facets and replaced Artifact references in Collection with CollectionItems. flys-client/trunk@1567 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 25 Mar 2011 09:19:29 +0000
parents 9cf5a40b62c7
children 0bec0112c8b3
line wrap: on
line source
package de.intevation.flys.client.shared.model;

import java.util.Date;

import com.smartgwt.client.widgets.grid.ListGridRecord;


/**
 * The CollectionRecord is a wrapper to put Collection objects into a ListGrid.
 *
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class CollectionRecord extends ListGridRecord {

    /** The artifact collection. */
    protected Collection collection;


    /**
     * The default constructor.
     *
     * @param collection The artifact collection.
     */
    public CollectionRecord(Collection collection) {
        this.collection = collection;
    }


    /**
     * Returns the date of the last modification.
     *
     * @return the last modification date.
     */
    public Date getDate() {
        return collection.getLastAccess();
    }


    /**
     * Returns the name of the collection.
     *
     * @return the name of the collection.
     */
    public String getName() {
        return collection.getName();
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org