Android Open Source - Android---using-SQLite-Database---Sample--Code Contact






From Project

Back to project page Android---using-SQLite-Database---Sample--Code.

License

The source code is released under:

This Code base is Open Source and Anyone with access to this can use it. The App Guruz is not responsible in Any way.

If you think the Android project Android---using-SQLite-Database---Sample--Code 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.tag.androidsqlite;
//w ww .jav  a  2s.com
public class Contact {
  
  //private variables
  int _id;
  String _name;
  String _phone_number;
  
  // Empty constructor
  public Contact(){
    
  }
  // constructor
  public Contact(int id, String name, String _phone_number){
    this._id = id;
    this._name = name;
    this._phone_number = _phone_number;
  }
  
  // constructor
  public Contact(String name, String _phone_number){
    this._name = name;
    this._phone_number = _phone_number;
  }
  // getting ID
  public int getID(){
    return this._id;
  }
  
  // setting id
  public void setID(int id){
    this._id = id;
  }
  
  // getting name
  public String getName(){
    return this._name;
  }
  
  // setting name
  public void setName(String name){
    this._name = name;
  }
  
  // getting phone number
  public String getPhoneNumber(){
    return this._phone_number;
  }
  
  // setting phone number
  public void setPhoneNumber(String phone_number){
    this._phone_number = phone_number;
  }
}




Java Source Code List

com.tag.androidsqlite.AndroidSQLiteTutorialActivity.java
com.tag.androidsqlite.Contact.java
com.tag.androidsqlite.DatabaseHandler.java