diff gnv-artifacts/src/main/java/de/intevation/gnv/state/layer/LayerMetaData.java @ 1057:04967dc9c83f

The title of a layer can be changed by the user. Product 'Layer' and 'Horizontalschnitt' now use the same code path to write the meta information file. (issue198) gnv-artifacts/trunk@1134 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 27 May 2010 16:43:00 +0000
parents dfd02f8d3602
children f953c9a559d8
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/state/layer/LayerMetaData.java	Thu May 27 08:48:16 2010 +0000
+++ b/gnv-artifacts/src/main/java/de/intevation/gnv/state/layer/LayerMetaData.java	Thu May 27 16:43:00 2010 +0000
@@ -17,6 +17,7 @@
     private String templateID = null;
     private String[] queryValues = null;
     private String geometryWKT = null;
+    private String layertitle = null;
 
     /**
      * Constructor
@@ -32,15 +33,17 @@
      */
     public LayerMetaData(String table, String geometryType, String where,
                          String columns, String templateID,
-                         String[] queryValues,String geometryWKT) {
+                         String[] queryValues,String geometryWKT,
+                         String layertitle) {
         super();
-        this.table = table;
+        this.table        = table;
         this.geometryType = geometryType;
-        this.where = where;
-        this.columns = columns;
-        this.templateID = templateID;
-        this.queryValues = queryValues;
-        this.geometryWKT = geometryWKT;
+        this.where        = where;
+        this.columns      = columns;
+        this.templateID   = templateID;
+        this.queryValues  = queryValues;
+        this.geometryWKT  = geometryWKT;
+        this.layertitle    = layertitle;
     }
 
     /**
@@ -103,4 +106,12 @@
         return queryValues;
     }
 
+    /**
+     * Returns the layer title.
+     * @return the layer title.
+     */
+    public String getLayertitle() {
+        return layertitle;
+    }
+
 }

http://dive4elements.wald.intevation.org