Android Open Source - andBlock Message






From Project

Back to project page andBlock.

License

The source code is released under:

MIT License

If you think the Android project andBlock 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.github.sakirtemel.andblock;
//ww w  .j a va 2  s .c om
public class Message {
  String _number;
  String _message;
  String _date;
  
  public Message(){
    //
    }
  
  public String getNumber(){
        return this._number;
    }

    public void setNumber(String number){
        this._number = number;
    }
    public String getMessage(){
        return this._message;
    }

    public void setMessage(String message){
        this._message = message;
    }
    public String getDate(){
        return this._date;
    }

    public void setDate(String date){
        this._date = date;
    }
    
}




Java Source Code List

com.github.sakirtemel.andblock.App.java
com.github.sakirtemel.andblock.DatabaseHelper.java
com.github.sakirtemel.andblock.DatabaseUpdater.java
com.github.sakirtemel.andblock.MainActivity.java
com.github.sakirtemel.andblock.Message.java
com.github.sakirtemel.andblock.SmsReceiver.java
com.github.sakirtemel.andblock.Splash.java