Back to project page taskr.
The source code is released under:
MIT License
If you think the Android project taskr 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.example.rrajath.app.data; /*from ww w . j av a 2 s . c o m*/ import lombok.Data; /** * Created by rrajath on 12/23/14. */ @Data public class TaskItem { private int id; private String taskName; private String taskDescription; private long creationTime; private boolean isTaskComplete; public TaskItem() { this.isTaskComplete = false; } }