Back to project page easydb.
The source code is released under:
Apache License
If you think the Android project easydb 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.san.api.easydb; /*from www . ja v a2 s .c om*/ import java.io.Serializable; @SuppressWarnings("serial") public abstract class Entity implements Serializable{ protected int id; public int getId() { return id; } public void setId(int id) { this.id = id; } }