diff flys-client/src/main/java/de/intevation/flys/client/shared/model/CollectionRecord.java @ 97:0bec0112c8b3

Integrated the ProjectList into the client. Now, the Collections of a user are displayed in the list. flys-client/trunk@1610 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 29 Mar 2011 13:53:24 +0000
parents 9cf5a40b62c7
children 9bd9c24f4935
line wrap: on
line diff
--- a/flys-client/src/main/java/de/intevation/flys/client/shared/model/CollectionRecord.java	Tue Mar 29 13:49:04 2011 +0000
+++ b/flys-client/src/main/java/de/intevation/flys/client/shared/model/CollectionRecord.java	Tue Mar 29 13:53:24 2011 +0000
@@ -27,12 +27,12 @@
 
 
     /**
-     * Returns the date of the last modification.
+     * Returns the date of the creation.
      *
-     * @return the last modification date.
+     * @return the creation time.
      */
-    public Date getDate() {
-        return collection.getLastAccess();
+    public Date getCreationTime() {
+        return collection.getCreationTime();
     }
 
 
@@ -42,7 +42,10 @@
      * @return the name of the collection.
      */
     public String getName() {
-        return collection.getName();
+        String name = collection.getName();
+        return name != null && name.length() > 0
+            ? name
+            : collection.identifier();
     }
 }
 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org