Package org.nxplanner.domain

Examples of org.nxplanner.domain.Task


import org.nxplanner.domain.Task;


public class TaskDecorator extends TableDecorator {
    public double getPercentCompleted() {
        Task task = getTask();
        return HoursDecorator.getPercentCompletedScore(task.getEstimatedHours(),
                                                       task.getActualHours(),
                                                       task.getRemainingHours(),
                                                       task.isCompleted());
    }
View Full Code Here


                                                       task.getRemainingHours(),
                                                       task.isCompleted());
    }

    public double getRemainingHours() {
        Task task = getTask();
        return HoursDecorator.getRemainingHoursScore(task.getActualHours(), task.getRemainingHours(), task.isCompleted());
    }
View Full Code Here

TOP

Related Classes of org.nxplanner.domain.Task

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.