Back to project page WheredWeEat.
The source code is released under:
MIT License
If you think the Android project WheredWeEat 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.jarwol.wheredweeat.models; // w w w .ja v a 2 s .c om import com.j256.ormlite.field.DatabaseField; public abstract class BaseModel { @DatabaseField(generatedId = true) private int id; public int getId() { return this.id; } public void setId(int id) { this.id = id; } }