diff gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/GNVArtifactBase.java @ 61:5f47881f7c97

Implementation of the MIN- / MAX-Value Representation gnv-artifacts/trunk@44 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Wed, 09 Sep 2009 09:29:39 +0000
parents 2c5d8f5bced1
children 5db77e0a8594
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/GNVArtifactBase.java	Tue Sep 08 16:24:34 2009 +0000
+++ b/gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/GNVArtifactBase.java	Wed Sep 09 09:29:39 2009 +0000
@@ -251,7 +251,9 @@
     protected void createUserInterface(Element parent, Document document){
         Element uiNode = createElement(document,"ui");
         
-        // TODO mit leben füllen.
+        if (this.current != null){
+            this.current.describe(document, uiNode);
+        }
         
         parent.appendChild(uiNode);
     }
@@ -259,9 +261,7 @@
     protected void createOutputs(Element parent, Document document){
         Element outputsNode = createElement(document,"outputs");
         
-        if (this.current != null){
-            this.current.describe(document, outputsNode);
-        }
+        // TODO_ Mit Leben füllen.
         
         parent.appendChild(outputsNode);
     }

http://dive4elements.wald.intevation.org