View Javadoc
1 package inklings.jgatms.bean; 2 3 /*** 4 * Value object for the State entity. 5 */ 6 public class State { 7 8 private String stateId; 9 private String description; 10 11 /*** 12 * Returns the value of stateId 13 */ 14 public String getStateId() { 15 return stateId; 16 } 17 18 /*** 19 * Sets the value of stateId 20 */ 21 public void setStateId(String stateId) { 22 this.stateId = stateId; 23 } 24 25 /*** 26 * Returns the value of description 27 */ 28 public String getDescription() { 29 return description; 30 } 31 32 /*** 33 * Sets the value of description 34 */ 35 public void setDescription(String description) { 36 this.description = description; 37 } 38 39 }

This page was automatically generated by Maven