Back to project page myToDo.
The source code is released under:
Apache License
If you think the Android project myToDo 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.gutspot.apps.android.mytodo.model; // w ww. ja v a2 s . c o m public abstract class AbstractEntity { private Long id; private long version; public AbstractEntity() { } public AbstractEntity(long id, long version) { this.id = id; this.version = version; } public Long getId() { return id; } public long getVersion() { return version; } }