Android Open Source - SQLiteExample-Android Product






From Project

Back to project page SQLiteExample-Android.

License

The source code is released under:

MIT License

If you think the Android project SQLiteExample-Android 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 se.dev.iprytz.sqliteexample;
/*from  w w  w  .j  a  v a2s .  c  om*/
/**
 * Created by isak.prytz on 02/02/15 Week: 6.
 */
public class Product {

    private int _id;
    private String _productName;

    public Product(String productName) {
        this._productName = productName;
    }

    public Product() {
    }


    public int get_id() {
        return _id;
    }

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

    public String get_productName() {
        return _productName;
    }

    public void set_productName(String _productName) {
        this._productName = _productName;
    }
}




Java Source Code List

se.dev.iprytz.sqliteexample.DBHandler.java
se.dev.iprytz.sqliteexample.MainActivity.java
se.dev.iprytz.sqliteexample.Product.java