(List<String> states)
| 99 | return states; |
| 100 | } |
| 101 | public void setStates(List<String> states) { |
| 102 | this.states = states; |
| 103 | } |
| 104 | public void setState(String state) { |
| 105 | if ( states == null ) { |
| 106 | states = new ArrayList<String>(); |
nothing calls this directly
no outgoing calls
no test coverage detected