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; //from ww w. j ava2 s . c o m public class Pcalls{ private String caddr; private String ctime; private String ctype; private String lat; private String lon; public String getCaddr(){ return this.caddr; } public void setCaddr(String caddr){ this.caddr = caddr; } public String getCtime(){ return this.ctime; } public void setCtime(String ctime){ this.ctime = ctime; } public String getCtype(){ return this.ctype; } public void setCtype(String ctype){ this.ctype = ctype; } public String getLat(){ return this.lat; } public void setLat(String lat){ this.lat = lat; } public String getLon(){ return this.lon; } public void setLon(String lon){ this.lon = lon; } }