Back to project page psiandroid.
The source code is released under:
GNU General Public License
If you think the Android project psiandroid 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.phpsysinfo.xml; /*from ww w . j a v a2 s . c om*/ public class PSITemperature { private String description = ""; private float temp = -1; private float max = -1; public PSITemperature(String description, float temp, float max) { this.description = description; this.temp = temp; this.max = max; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public float getTemp() { return temp; } public void setTemp(float temp) { this.temp = temp; } public float getMax() { return max; } public void setMax(float max) { this.max = max; } }