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.j av a 2 s. c om*/ import java.util.Date; public class Notice extends AbstractEntity { /** * Represents the identifier of the todo. */ private long toDoId; /** * Represents the notice time of the todo. */ private Date time; public Notice() { } public Notice(long id, long version) { super(id, version); } public long getToDoId() { return toDoId; } public void setToDoId(long toDoId) { this.toDoId = toDoId; } public Date getTime() { return time; } public void setTime(Date time) { this.time = time; } }