Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/PreSettingsTransferCoordinateSelectionState.java @ 778:9a828e5a2390
Removed trailing whitespace
gnv-artifacts/trunk@851 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Mon, 29 Mar 2010 07:58:51 +0000 |
parents | a5e860f17a52 |
children | b1f5f2a8840f |
comparison
equal
deleted
inserted
replaced
777:8009961db1cb | 778:9a828e5a2390 |
---|---|
25 * The UID of this Class. | 25 * The UID of this Class. |
26 */ | 26 */ |
27 private static final long serialVersionUID = -3972304838976884048L; | 27 private static final long serialVersionUID = -3972304838976884048L; |
28 | 28 |
29 private String transferPreSettingsName = null; | 29 private String transferPreSettingsName = null; |
30 | 30 |
31 private String transferInputDataname = null; | 31 private String transferInputDataname = null; |
32 /** | 32 /** |
33 * Constructor | 33 * Constructor |
34 */ | 34 */ |
35 public PreSettingsTransferCoordinateSelectionState() { | 35 public PreSettingsTransferCoordinateSelectionState() { |
50 localInputdata.add(new DefaultInputData(transferInputDataname, | 50 localInputdata.add(new DefaultInputData(transferInputDataname, |
51 ip.getValue())); | 51 ip.getValue())); |
52 this.putInputData(localInputdata, uuid); | 52 this.putInputData(localInputdata, uuid); |
53 } | 53 } |
54 } | 54 } |
55 | 55 |
56 super.initialize(uuid, context); | 56 super.initialize(uuid, context); |
57 } | 57 } |
58 | 58 |
59 /** | 59 /** |
60 * @see de.intevation.gnv.state.StateBase#setup(org.w3c.dom.Node) | 60 * @see de.intevation.gnv.state.StateBase#setup(org.w3c.dom.Node) |
61 */ | 61 */ |
62 @Override | 62 @Override |
63 public void setup(Node configuration) { | 63 public void setup(Node configuration) { |
64 | 64 |
65 Element preSettingsNode = (Element)Config.getNodeXPath(configuration, | 65 Element preSettingsNode = (Element)Config.getNodeXPath(configuration, |
66 "presettings-transfer"); | 66 "presettings-transfer"); |
67 if (preSettingsNode != null){ | 67 if (preSettingsNode != null){ |
68 this.transferPreSettingsName = preSettingsNode.getAttribute("presetting"); | 68 this.transferPreSettingsName = preSettingsNode.getAttribute("presetting"); |
69 this.transferInputDataname = preSettingsNode.getAttribute("inputvalue"); | 69 this.transferInputDataname = preSettingsNode.getAttribute("inputvalue"); |
70 } | 70 } |
71 super.setup(configuration); | 71 super.setup(configuration); |
72 } | 72 } |
73 | 73 |
74 | 74 |
75 | 75 |
76 } | 76 } |