1 22 23 24 package hero.util; 25 26 import java.io.Serializable ; 27 28 public final class StrutsNodeValue implements Serializable , java.lang.Cloneable { 29 30 32 33 36 private String projectName = null; 37 38 41 private String name = null; 42 43 46 private String creator = null; 47 48 51 private String state = null; 52 53 56 private String role = null; 57 58 61 private String type = null; 62 63 66 private boolean anticipable = true ; 67 68 71 private String deadline = "Deadline needed"; 72 73 76 private String description = "Not description yet"; 77 78 81 private String executor = "This activity is not executing"; 82 83 84 86 90 public String getProjectName() { 91 return (projectName); 92 } 93 94 98 public void setProjectName(String projectName) { 99 this.projectName = projectName; 100 } 101 102 106 public String getName() { 107 return (name); 108 } 109 110 114 public void setName(String name) { 115 this.name = name; 116 } 117 118 122 public String getCreator() { 123 return (creator); 124 } 125 126 130 public void setCreator(String creator) { 131 this.creator = creator; 132 } 133 134 138 public String getState() { 139 return (state); 140 } 141 142 146 public void setState(String state) { 147 this.state = state; 148 } 149 150 154 public String getType() { 155 return (type); 156 } 157 158 162 public void setType(String type) { 163 this.type = type; 164 } 165 166 170 public String getRole() { 171 return (role); 172 } 173 174 178 public void setRole(String role) { 179 this.role = role; 180 } 181 182 186 public boolean getAnticipable() { 187 return (anticipable); 188 } 189 190 194 public void setAnticipable(boolean anticipable) { 195 this.anticipable = anticipable; 196 } 197 198 202 public String getDeadline() { 203 return (deadline); 204 } 205 206 210 public void setDeadline(String deadline) { 211 this.deadline = deadline; 212 } 213 214 218 public String getDescription() { 219 return (description); 220 } 221 222 226 public void setDescription(String description) { 227 this.description = description; 228 } 229 230 234 public String getExecutor() { 235 return (executor); 236 } 237 238 242 public void setExecutor(String executor) { 243 this.executor = executor; 244 } 245 246 public StrutsNodeValue(){} 247 248 public Object clone() throws java.lang.CloneNotSupportedException { 249 return super.clone(); 250 } 251 252 } 253 | Popular Tags |