Android Open Source - m-app Call Log






From Project

Back to project page m-app.

License

The source code is released under:

GNU General Public License

If you think the Android project m-app 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.example.app;
//from  ww  w .j  a  v a2s  .  co m
public class CallLog {

    private int _id;
    private String caller_number;
    private String callee_status_id;

    public CallLog() {
    }

    public int getId() {
        return _id;
    }

    public void setId(int _id) {
        this._id = _id;
    }

    public String getCallerNumber() {
        return caller_number;
    }

    public void setCallerNumber(String caller_number) {
        this.caller_number = caller_number;
    }

    public String getCalleeStatusId() {
        return callee_status_id;
    }

    public void setCalleeStatusId(String callee_status_id) {
        this.callee_status_id = callee_status_id;
    }

}




Java Source Code List

com.example.app.CallLog.java
com.example.app.DBHelper.java
com.example.app.DataSource.java
com.example.app.HomeActivity.java
com.example.app.LogArrayAdapter.java
com.example.app.ObserverService.java
com.example.app.Status.java
com.example.app.ViewLogActivity.java