1 package hero.historic; 2 3 31 32 import java.io.Serializable ; 33 import java.util.Vector ; 34 35 public final class NodeHistoric implements Serializable , java.lang.Cloneable { 36 37 39 42 private String name = ""; 43 44 47 private String state = ""; 48 49 52 private String role = ""; 53 54 57 private String executor = ""; 58 59 62 private String type = ""; 63 64 67 private boolean anticipable = true ; 68 69 72 private String description= ""; 73 74 77 private String startDate = ""; 78 79 82 private String endDate = ""; 83 84 87 private Vector properties; 88 89 90 92 96 public String getName() { 97 return (name); 98 } 99 100 104 public void setName(String name) { 105 this.name = name; 106 } 107 108 112 public String getState() { 113 return (state); 114 } 115 116 120 public void setState(String state) { 121 this.state = state; 122 } 123 124 128 public String getType() { 129 return (type); 130 } 131 132 136 public void setType(String type) { 137 this.type = type; 138 } 139 140 144 public String getRole() { 145 return (role); 146 } 147 148 152 public void setRole(String role) { 153 this.role = role; 154 } 155 156 160 public boolean getAnticipable() { 161 return (anticipable); 162 } 163 164 168 public void setAnticipable(boolean anticipable) { 169 this.anticipable = anticipable; 170 } 171 172 176 public String getDescription() { 177 return (description); 178 } 179 180 184 public void setDescription(String description) { 185 this.description = description; 186 } 187 188 192 public String getStartDate() { 193 return (startDate); 194 } 195 196 200 public void setStartDate(String startDate) { 201 this.startDate = startDate; 202 } 203 204 208 public String getEndDate() { 209 return (endDate); 210 } 211 212 216 public void setEndDate(String endDate) { 217 this.endDate = endDate; 218 } 219 220 224 public String getExecutor() { 225 return (executor); 226 } 227 228 232 public void setExecutor(String executor) { 233 this.executor = executor; 234 } 235 236 public Vector getProperties() { 237 return (properties); 238 } 239 240 public void setProperties(Vector properties) { 241 this.properties = properties; 242 } 243 244 public NodeHistoric(){} 245 246 public Object clone() throws java.lang.CloneNotSupportedException { 247 return super.clone(); 248 } 249 250 } 251 | Popular Tags |