comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/ArtifactDescription.java @ 36:ad381cc47217

Format Code to max 80 Chars per Row gnv/trunk@172 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 02 Oct 2009 08:54:13 +0000
parents 07e9c137a2f1
children 183850730a90
comparison
equal deleted inserted replaced
35:4405f31bbc30 36:ad381cc47217
8 8
9 import org.w3c.dom.Node; 9 import org.w3c.dom.Node;
10 10
11 /** 11 /**
12 * @author Tim Englich <tim.englich@intevation.de> 12 * @author Tim Englich <tim.englich@intevation.de>
13 * 13 *
14 */ 14 */
15 public interface ArtifactDescription { 15 public interface ArtifactDescription {
16 16
17 /** 17 /**
18 * @return the currentUI 18 * @return the currentUI
19 */ 19 */
20 public Node getCurrentUI(); 20 public Node getCurrentUI();
21 21
22 /** 22 /**
23 @param currentUI the currentUI to set 23 * @param currentUI
24 * the currentUI to set
24 */ 25 */
25 public void setCurrentUI(Node currentUI); 26 public void setCurrentUI(Node currentUI);
26 27
27 /** 28 /**
28 @param currentOut the currentOut to set 29 * @param currentOut
30 * the currentOut to set
29 */ 31 */
30 public void setCurrentOut(Node currentOut); 32 public void setCurrentOut(Node currentOut);
31 33
32 /** 34 /**
33 * @return the reachableStates 35 * @return the reachableStates
34 */ 36 */
35 public Collection<String> getReachableStates(); 37 public Collection<String> getReachableStates();
38
36 /** 39 /**
37 @param reachableStates the reachableStates to set 40 * @param reachableStates
41 * the reachableStates to set
38 */ 42 */
39 public void setReachableStates(Collection<String> reachableStates); 43 public void setReachableStates(Collection<String> reachableStates);
40 44
41 /** 45 /**
42 * @return the currentState 46 * @return the currentState
43 */ 47 */
44 public String getCurrentState(); 48 public String getCurrentState();
45 49
46 /** 50 /**
47 @param currentState the currentState to set 51 * @param currentState
52 * the currentState to set
48 */ 53 */
49 public void setCurrentState(String currentState); 54 public void setCurrentState(String currentState);
50 55
51 /** 56 /**
52 * @return the reachableStates 57 * @return the reachableStates
53 */ 58 */
54 public Collection<String> getInputParameter(); 59 public Collection<String> getInputParameter();
55 60
56 /** 61 /**
57 * @param inputParameter 62 * @param inputParameter
58 */ 63 */
59 public void setInputParameter(Collection<String> inputParameter); 64 public void setInputParameter(Collection<String> inputParameter);
60 65
61 /** 66 /**
62 * @return the reachableStates 67 * @return the reachableStates
63 */ 68 */
64 public Map<String, OutputMode> getOutputModes(); 69 public Map<String, OutputMode> getOutputModes();
65 70
66 /** 71 /**
67 * @return the reachableStates 72 * @return the reachableStates
68 */ 73 */
69 public Collection<OutputMode> getOutputModesAsCollection(); 74 public Collection<OutputMode> getOutputModesAsCollection();
70 75
71 /** 76 /**
72 * @param outputParameter 77 * @param outputParameter
73 */ 78 */
74 public void setOutputModes(Map<String, OutputMode> outputModes); 79 public void setOutputModes(Map<String, OutputMode> outputModes);
75 80

http://dive4elements.wald.intevation.org