Back to project page m-app.
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.
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; } }