Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 22 23 24 package hero.util; 25 26 import java.io.Serializable ; 27 28 public final class StrutsProjectValue implements Serializable , java.lang.Cloneable { 29 30 32 35 private String name = null; 36 37 40 private String creator = null; 41 42 45 private String state = null; 46 47 50 private int nact = 0 ; 51 52 55 private int nusers = 0; 56 57 59 63 public String getName() { 64 return (name); 65 } 66 67 71 public void setName(String name) { 72 this.name = name; 73 } 74 75 79 public String getCreator() { 80 return (creator); 81 } 82 83 87 public void setCreator(String creator) { 88 this.creator = creator; 89 } 90 91 95 public String getState() { 96 return (state); 97 } 98 99 103 public void setState(String state) { 104 this.state = state; 105 } 106 107 111 public int getNact() { 112 return (nact); 113 } 114 115 119 public void setNact(int nact) { 120 this.nact = nact; 121 } 122 123 127 public int getNusers() { 128 return (nusers); 129 } 130 131 135 public void setNusers(int nusers) { 136 this.nusers = nusers; 137 } 138 139 public StrutsProjectValue(){} 140 141 public Object clone() throws java.lang.CloneNotSupportedException { 142 return super.clone(); 143 } 144 145 } 146
| Popular Tags
|