Back to project page SeeKampf.
The source code is released under:
GNU General Public License
If you think the Android project SeeKampf 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 net.avedo.seekampf.models; //from ww w. ja va 2 s .c o m public class BaseModel { private long id; public long getId() { return id; } public void setId(long id) { this.id = id; } }