1 22 23 24 package hero.util; 25 26 import java.io.Serializable ; 27 28 public final class StrutsEdgeValue implements Serializable , java.lang.Cloneable { 29 30 32 35 private String name = null; 36 37 40 private String state = null; 41 42 45 private String inNode = null; 46 47 50 private String outNode = null; 51 52 54 58 public String getName() { 59 return (name); 60 } 61 62 66 public void setName(String name) { 67 this.name = name; 68 } 69 70 74 public String getState() { 75 return (state); 76 } 77 78 82 public void setState(String state) { 83 this.state = state; 84 } 85 86 90 public String getInNode() { 91 return (inNode); 92 } 93 94 98 public void setInNode(String inNode) { 99 this.inNode = inNode; 100 } 101 102 106 public String getOutNode() { 107 return (outNode); 108 } 109 110 114 public void setOutNode(String outNode) { 115 this.outNode = outNode; 116 } 117 118 119 public StrutsEdgeValue(){} 120 121 public Object clone() throws java.lang.CloneNotSupportedException { 122 return super.clone(); 123 } 124 125 } 126 | Popular Tags |