01: package hero.util.values;
02:
03: import java.io.Serializable;
04: import java.util.Collection;
05: import java.util.ArrayList;
06:
07: public final class BonitaEdgeValue implements Serializable {
08:
09: // --------------------------------------------------- Instance Variables
10:
11: private String name = null;
12:
13: private int state;
14:
15: private String condition = null;
16:
17: private String inNode = null;
18:
19: private String outNode = null;
20:
21: // ----------------------------------------------------------- Properties
22:
23: public String getName() {
24: return (name);
25: }
26:
27: public void setName(String name) {
28: this .name = name;
29: }
30:
31: public int getState() {
32: return (state);
33: }
34:
35: public void setState(int state) {
36: this .state = state;
37: }
38:
39: public String getCondition() {
40: return (condition);
41: }
42:
43: public void setCondition(String condition) {
44: this .condition = condition;
45: }
46:
47: public String getInNode() {
48: return (inNode);
49: }
50:
51: public void setInNode(String inNode) {
52: this .inNode = inNode;
53: }
54:
55: public String getOutNode() {
56: return (outNode);
57: }
58:
59: public void setOutNode(String outNode) {
60: this .outNode = outNode;
61: }
62:
63: public BonitaEdgeValue() {
64: }
65:
66: }
|