Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/GaugeSelect.java @ 109:9891d133f08d
Improved the init process of the WINFOArtifact - there are two new states to select the river and the gauge.
flys-artifacts/trunk@1294 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Fri, 04 Feb 2011 11:18:59 +0000 |
parents | |
children | b18aebd1342f |
comparison
equal
deleted
inserted
replaced
108:50273a391e53 | 109:9891d133f08d |
---|---|
1 package de.intevation.flys.artifacts.states; | |
2 | |
3 import org.apache.log4j.Logger; | |
4 | |
5 import org.w3c.dom.Document; | |
6 import org.w3c.dom.Node; | |
7 | |
8 import de.intevation.artifacts.CallContext; | |
9 | |
10 import de.intevation.artifactdatabase.state.AbstractState; | |
11 | |
12 | |
13 /** | |
14 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> | |
15 */ | |
16 public class GaugeSelect extends AbstractState { | |
17 | |
18 /** The logger used in this class. */ | |
19 private static Logger logger = Logger.getLogger(GaugeSelect.class); | |
20 | |
21 /** | |
22 * The default constructor that initializes an empty GaugeState object. | |
23 */ | |
24 public GaugeSelect() { | |
25 super(null, null); | |
26 } | |
27 | |
28 | |
29 public void setup(Node config) { | |
30 super.setup(config); | |
31 } | |
32 | |
33 | |
34 public void describe( | |
35 Document document, | |
36 Node root, | |
37 CallContext context, | |
38 String uuid) | |
39 { | |
40 // TODO Implement me | |
41 logger.error("Currently not implemented."); | |
42 } | |
43 } | |
44 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : |