(String state)
| 102 | this.states = states; |
| 103 | } |
| 104 | public void setState(String state) { |
| 105 | if ( states == null ) { |
| 106 | states = new ArrayList<String>(); |
| 107 | } |
| 108 | states.add(state); |
| 109 | } |
| 110 | |
| 111 | @DynamoDBAttribute(attributeName="moves") |
| 112 | public List<String> getMoves() { |
no outgoing calls
no test coverage detected