Back to project page AndroidZipcodeLib.
The source code is released under:
MIT License
If you think the Android project AndroidZipcodeLib 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 codemonkeylabs.androidzipcodelib.library; //from w ww .ja va 2 s .c o m import java.util.ArrayList; /** * Created by brianplummer on 2/17/14. */ public class ZipResult { public String state = ""; public ArrayList<String> cities = new ArrayList<String>(); public String zip = ""; }