Back to project page ZillowApiForAndroid.
The source code is released under:
MIT License
If you think the Android project ZillowApiForAndroid 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.archerabi.android.zillow.api.model; /**//w ww .j a va 2 s. c o m * */ import java.util.List; import org.simpleframework.xml.Element; import org.simpleframework.xml.ElementList; import org.simpleframework.xml.Path; import org.simpleframework.xml.Root; /** * @author "Abhijith Reddy" * */ @Root(name = "response", strict = false) public class RegionChildren { @Path("response/list") @ElementList(inline=true) private List<Neighborhood> list; @Path("response") @Element private String subregiontype; public RegionChildren() { } /** * @return the subregiontype */ public String getSubregiontype() { return subregiontype; } /** * @param subregiontype * the subregiontype to set */ public void setSubregiontype(String subregiontype) { this.subregiontype = subregiontype; } public List<Neighborhood> getList() { return list; } }