Back to project page android-json-http.
The source code is released under:
Apache License
If you think the Android project android-json-http 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 com.example.response.table; //w ww .java 2 s.c o m import java.util.ArrayList; public class AddressComponent { private String long_name; private String short_name; private ArrayList<String> types; public String getLong_name() { return long_name; } public void setLong_name(String long_name) { this.long_name = long_name; } public String getShort_name() { return short_name; } public void setShort_name(String short_name) { this.short_name = short_name; } public ArrayList<String> getTypes() { return types; } public void setTypes(ArrayList<String> types) { this.types = types; } }