Back to project page Tree-Task.
The source code is released under:
Apache License
If you think the Android project Tree-Task 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.ghsoft.treetask; /*from w w w . ja v a2 s . co m*/ import java.io.Serializable; public class TaskDummy extends Task implements Serializable { private static final long serialVersionUID = 1L; public TaskDummy(TaskNode parent) { super(parent); } @Override public int completion() { return 0; } @Override public int subTaskCount() { return 0; } }