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 w w. j a va 2s . c o m*/ * */ import java.util.List; import org.simpleframework.xml.ElementList; import org.simpleframework.xml.Path; import org.simpleframework.xml.Root; /** * @author "Abhijith Reddy" * */ @Root(name="page",strict=false) public class DemographicPage { @ElementList(inline=true) @Path("tables/table/data") List<Metric> metrics; /** * @return the metrics */ public List<Metric> getMetrics() { return metrics; } /** * @param metrics the metrics to set */ public void setMetrics(List<Metric> metrics) { this.metrics = metrics; } }