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 w ww .jav a 2s . c om public class PSIRaidDevice { private String name = ""; private String status = ""; public PSIRaidDevice(String name, String status) { super(); this.name = name; this.status = status; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } }