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; import org.simpleframework.xml.Element; import org.simpleframework.xml.Root; //from ww w. j a v a 2 s. co m @Root public class CityValue { @Element(required=false) private Float value; /** * @return the value */ public Float getValue() { return value; } /** * @param value the value to set */ public void setValue(Float value) { this.value = value; } }