Android Open Source - KeepSafe Sms






From Project

Back to project page KeepSafe.

License

The source code is released under:

Apache License

If you think the Android project KeepSafe listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.droidappdevs.keepsafe;
//from  www .  ja v  a 2 s  .  com

public class Sms{
private String _id;
private String _address;
private String _msg;
private String _readState; //"0" for have not read sms and "1" for have read sms
private String _time;
private String _folderName;

public String getId(){
return _id;
}
public String getAddress(){
return _address;
}
public String getMsg(){
return _msg;
}
public String getReadState(){
return _readState;
}
public String getTime(){
return _time;
}
public String getFolderName(){
return _folderName;
}


public void setId(String id){
_id = id;
}
public void setAddress(String address){
_address = address;
}
public void setMsg(String msg){
_msg = msg;
}
public void setReadState(String readState){
_readState = readState;
}
public void setTime(String time){
_time = time;
}
public void setFolderName(String folderName){
_folderName = folderName;
}

}




Java Source Code List

com.droidappdevs.keepsafe.Compress.java
com.droidappdevs.keepsafe.GmailSender.java
com.droidappdevs.keepsafe.LaunchActivity.java
com.droidappdevs.keepsafe.ReceiverTrigger.java
com.droidappdevs.keepsafe.Sms.java
com.droidappdevs.keepsafe.StartPage.java