diff flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultGaugeInfo.java @ 3843:8e169e4e1b57

Add the official gauge number to the GaugeInfo class flys-client/trunk@5559 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Fri, 21 Sep 2012 14:12:41 +0000
parents 70976b711b7e
children f3b821735e39
line wrap: on
line diff
--- a/flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultGaugeInfo.java	Fri Sep 21 13:44:56 2012 +0000
+++ b/flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultGaugeInfo.java	Fri Sep 21 14:12:41 2012 +0000
@@ -18,6 +18,7 @@
     private Double station;
     private String wstunit;
     private String infourl;
+    private Long officialnumber;
 
     public DefaultGaugeInfo() {
     }
@@ -35,20 +36,22 @@
             Double minw,
             Double maxw,
             String wstunit,
-            String infourl)
+            String infourl,
+            Long official)
     {
-        this.name    = name;
-        this.station = station;
-        this.start   = start;
-        this.end     = end;
-        this.datum   = datum;
-        this.aeo     = aeo;
-        this.minq    = minq;
-        this.maxq    = maxq;
-        this.minw    = minw;
-        this.maxw    = maxw;
-        this.wstunit = wstunit;
-        this.infourl = infourl;
+        this.name           = name;
+        this.station        = station;
+        this.start          = start;
+        this.end            = end;
+        this.datum          = datum;
+        this.aeo            = aeo;
+        this.minq           = minq;
+        this.maxq           = maxq;
+        this.minw           = minw;
+        this.maxw           = maxw;
+        this.wstunit        = wstunit;
+        this.infourl        = infourl;
+        this.officialnumber = official;
     }
     /**
      * Returns the name of the gauge
@@ -137,4 +140,11 @@
     public String getInfoURL() {
         return this.infourl;
     }
+
+    /**
+     * Returns the official number of this gauge
+     */
+    public Long getOfficialNumber() {
+        return this.officialnumber;
+    }
 }

http://dive4elements.wald.intevation.org