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 ava2 s. c o m*/ public class PSISmart { private String disk = ""; private String attribut = ""; private String value = ""; public PSISmart(String disk, String attribut, String value) { this.disk = disk; this.attribut = attribut; this.value = value; } public String getDisk() { return disk; } public void setDisk(String disk) { this.disk = disk; } public String getAttribut() { return attribut; } public void setAttribut(String attribut) { this.attribut = attribut; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }