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 w w.java 2s .c om import java.util.Date; public class ToDo extends AbstractEntity { /** * Represents the create timestamp of the todo. */ private Date created; /** * Represents the finish timestamp of the todo. <code>-1</code> means * unfinished. */ private Date finished; public ToDo() { } public ToDo(long id, long version) { super(id, version); } public Date getCreated() { return created; } public void setCreated(Date created) { this.created = created; } public Date getFinished() { return finished; } public void setFinished(Date finished) { this.finished = finished; } }