StateTypepublic class StateType extends Object implements Serializable
Fields Summary |
---|
private String | state |
Constructors Summary |
---|
public StateType()
| public StateType(String state)
this.state = state;
|
Methods Summary |
---|
public java.lang.String | getState()Gets the state value for this StateType.
return state;
| public void | setState(java.lang.String state)Sets the state value for this StateType.
this.state = state;
|
|