Back to project page Android-HCI.
The source code is released under:
MIT License
If you think the Android project Android-HCI listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ar.edu.itba.model; /*from w w w . ja va 2 s. co m*/ public class State { private String stateId; private String name; public String getStateId() { return stateId; } public String getName() { return name; } @Override public String toString() { return stateId+name; } } /* { "stateId": "C", "name": "Ciudad Autonoma de Buenos Aires" } */