diff flys-client/src/main/java/de/intevation/flys/client/client/ui/stationinfo/GaugePanel.java @ 4956:f46a07c11324

Refactor Pegel- and Messtelleninfo in client ui Use SmartGWT ListGrid instead of GWT Tree to display the station entires.
author Björn Ricks <bjoern.ricks@intevation.de>
date Fri, 01 Feb 2013 16:32:48 +0100
parents
children e70ff0a600a3
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/stationinfo/GaugePanel.java	Fri Feb 01 16:32:48 2013 +0100
@@ -0,0 +1,52 @@
+package de.intevation.flys.client.client.ui.stationinfo;
+
+import com.google.gwt.core.client.GWT;
+import com.google.gwt.user.client.rpc.AsyncCallback;
+import de.intevation.flys.client.client.FLYS;
+import de.intevation.flys.client.shared.model.RiverInfo;
+
+/**
+ * The GaugePanel is intended to be used within a SectionStackSection
+ *
+ * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a>
+ */
+public class GaugePanel extends InfoPanel {
+
+    /**
+     * GaugePanel loads the GaugeInfo from the RiverInfoService and
+     * displays them in a tree underneath a RiverInfoPanel
+     *
+     * @param flys The FLYS object
+     */
+    public GaugePanel(FLYS flys) {
+        super(new GaugeListGrid(flys));
+    }
+
+
+    @Override
+    public String getSectionTitle() {
+        return MSG.gaugePanelTitle();
+    }
+
+    /**
+     * Loads the river info and renders it afterwards
+     */
+    public void refresh() {
+        contract();
+
+        riverInfoService.getGauges(this.river, new AsyncCallback<RiverInfo>() {
+            @Override
+            public void onFailure(Throwable e) {
+                GWT.log("Could not load the river info." + e);
+            }
+
+            @Override
+            public void onSuccess(RiverInfo riverinfo) {
+                GWT.log("Loaded river info");
+                render(riverinfo);
+                expand();
+            }
+        });
+    }
+
+}

http://dive4elements.wald.intevation.org