Back to project page br.com.mirabilis.sqlite.
The source code is released under:
Apache License
If you think the Android project br.com.mirabilis.sqlite 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 br.com.mirabilis.sqlite.manager.model; /*from w w w . java 2 s . c o m*/ import br.com.mirabilis.sqlite.annotation.model.SQLiteAnnotationField; import br.com.mirabilis.sqlite.manager.model.SQLiteField.SQLiteFieldType; /** * Class abstract that represent's Table's inside SQLite. * * @author Rodrigo Sim?es Rosa */ public abstract class SQLiteTable { @SQLiteAnnotationField(name = "_id", type = SQLiteFieldType.INTEGER, autoIncrement = true, notNull = true, primaryKey = true) protected long _id; /** * Get ID * * @return */ public long getId() { return _id; } /** * Set ID * * @param id */ public void setId(long id) { this._id = id; } }