Back to project page LCFR-Mobile-Android.
The source code is released under:
Apache License
If you think the Android project LCFR-Mobile-Android 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 org.dizon.LCFRCAD; //w w w.java2s. c o m import java.util.List; public class CADData{ private String active; private String admin; private String age; private Number callcnt; private List<Calls> calls; private String debugtext; private String motd; private Number pacallcnt; private List<String> pacalls; private Number pcallcnt; private List<Pcalls> pcalls; private List<String> stations; public String getActive(){ return this.active; } public void setActive(String active){ this.active = active; } public String getAdmin(){ return this.admin; } public void setAdmin(String admin){ this.admin = admin; } public String getAge(){ return this.age; } public void setAge(String age){ this.age = age; } public Number getCallcnt(){ return this.callcnt; } public void setCallcnt(Number callcnt){ this.callcnt = callcnt; } public List<Calls> getCalls(){ return this.calls; } public void setCalls(List<Calls> calls){ this.calls = calls; } public String getDebugtext(){ return this.debugtext; } public void setDebugtext(String debugtext){ this.debugtext = debugtext; } public String getMotd(){ return this.motd; } public void setMotd(String motd){ this.motd = motd; } public Number getPacallcnt(){ return this.pacallcnt; } public void setPacallcnt(Number pacallcnt){ this.pacallcnt = pacallcnt; } public List<String> getPacalls(){ return this.pacalls; } public void setPacalls(List<String> pacalls){ this.pacalls = pacalls; } public Number getPcallcnt(){ return this.pcallcnt; } public void setPcallcnt(Number pcallcnt){ this.pcallcnt = pcallcnt; } public List<Pcalls> getPcalls(){ return this.pcalls; } public void setPcalls(List<Pcalls> pcalls){ this.pcalls = pcalls; } public List<String> getStations(){ return this.stations; } public void setStations(List<String> stations){ this.stations = stations; } }