comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/RiverSelect.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 b51e92fef704
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 RiverSelect extends AbstractState {
17
18 /** The logger used in this class. */
19 private static Logger logger = Logger.getLogger(RiverSelect.class);
20
21 /**
22 * The default constructor that initializes an empty State object.
23 */
24 public RiverSelect() {
25 super(null, null);
26 }
27
28
29 /**
30 * Initialize the state based on the state node in the configuration.
31 *
32 * @param config The state configuration node.
33 */
34 public void setup(Node config) {
35 super.setup(config);
36 }
37
38
39 public void describe(
40 Document document,
41 Node root,
42 CallContext context,
43 String uuid)
44 {
45 // TODO Implement me
46 logger.error("Currently not implemented.");
47 }
48 }
49 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org