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 w w w .ja v a2 s . c om @Root public class NeighborhoodValue { @Element(required=false) private Float value = 0F; /** * @return the value */ public Float getValue() { return value; } /** * @param value the value to set */ public void setValue(float value) { this.value = value; } }