# HG changeset patch # User Ingo Weinzierl # Date 1297349114 0 # Node ID 9cf5a40b62c7048f83603abebd64ecf7798e7129 # Parent bc5d4d2297b9cb80c1bf488b8eade5a0be0c3171 Added an interface and a default implementation of a Collection. flys-client/trunk@1311 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r bc5d4d2297b9 -r 9cf5a40b62c7 flys-client/ChangeLog --- a/flys-client/ChangeLog Thu Feb 10 08:57:34 2011 +0000 +++ b/flys-client/ChangeLog Thu Feb 10 14:45:14 2011 +0000 @@ -1,3 +1,11 @@ +2011-02-10 Ingo Weinzierl + + * src/main/java/de/intevation/flys/client/shared/model/DefaultCollection.java, + src/main/java/de/intevation/flys/client/shared/model/Collection.java: The + interface and its default implementation of a Collection. + NOTE: I think both classes will change pretty much, but they have been + necessary for the ProjectList mockup. + 2011-02-10 Ingo Weinzierl * src/main/java/de/intevation/flys/client/FLYS.gwt.xml: The artifact-common diff -r bc5d4d2297b9 -r 9cf5a40b62c7 flys-client/src/main/java/de/intevation/flys/client/shared/model/Collection.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/shared/model/Collection.java Thu Feb 10 14:45:14 2011 +0000 @@ -0,0 +1,17 @@ +package de.intevation.flys.client.shared.model; + +import java.util.Date; + + +/** + * The artifact collection. + * + * @author Ingo Weinzierl + */ +public interface Collection { + + public String getName(); + + public Date getLastAccess(); +} +// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : diff -r bc5d4d2297b9 -r 9cf5a40b62c7 flys-client/src/main/java/de/intevation/flys/client/shared/model/CollectionRecord.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/shared/model/CollectionRecord.java Thu Feb 10 14:45:14 2011 +0000 @@ -0,0 +1,48 @@ +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 Ingo Weinzierl + */ +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 : diff -r bc5d4d2297b9 -r 9cf5a40b62c7 flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultCollection.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultCollection.java Thu Feb 10 14:45:14 2011 +0000 @@ -0,0 +1,36 @@ +package de.intevation.flys.client.shared.model; + +import java.util.Date; + + +/** + * The default implementation of a {@link Collection}. + * + * @author Ingo Weinzierl + */ +public class DefaultCollection implements Collection { + + /** The uuid of the collection. */ + protected String uuid; + + + /** + * Creates a new DefaultCollection with a UUID. + * + * @param uuid The UUID. + */ + public DefaultCollection(String uuid) { + this.uuid = uuid; + } + + + public Date getLastAccess() { + return new Date(); + } + + + public String getName() { + return uuid; + } +} +// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :