📄 tasknode.java
字号:
package net.sourceforge.ganttproject.task;import javax.swing.tree.DefaultMutableTreeNode;import net.sourceforge.ganttproject.GanttCalendar;/** * This class is the class to use to discribe the tasks hierarchy. * * @author bbaranne (Benoit Baranne) */public class TaskNode extends DefaultMutableTreeNode { /** * The reference task */ private final Task task; /** * Creates an instance of TaskNode with the given task as reference. * * @param t * Task of reference. */ public TaskNode(Task t) { super(t); task = t; } /** * Sets the priority of the task. * * @param priority * The priority to be set. */ public void setPriority(int priority) { task.setPriority(priority); } /** * Returns the priority of the task. * * @return The priority of the task. */ public int getPriority() { return task.getPriority(); } /** * Sets the name of the task. * * @param newName * The name to be set. */ public void setName(String newName) { task.setName(newName); } /** * Returns the name of the task. * * @return The name of the task. */ public String getName() { return task.getName(); } /** * Sets the start date of the task. * * @param startDate * The start date of the task to be set. */ public void setStart(GanttCalendar startDate) { TaskMutator mutator = task.createMutatorFixingDuration(); mutator.setStart(startDate); mutator.commit(); } /** * Returns the start date of the task. * * @return The start date of the task. */ public GanttCalendar getStart() { return task.getStart(); } /** * Sets the end date of the task. * * @param endDate * The end date of the task to be set. */ public void setEnd(GanttCalendar endDate) { TaskMutator mutator = task.createMutator(); mutator.setEnd(endDate); mutator.commit(); } /** * Returns the end date of the task. * * @return The end date of the task. */ public GanttCalendar getEnd() { return task.getEnd(); } /** * Sets the duration of the task. * * @param length * The duration to be set. */ public void setDuration(TaskLength length) { TaskMutator mutator = task.createMutator(); mutator.setDuration(length); mutator.commit(); } /** * Returns the duration of the task. * * @return The duration of the task. */ public int getDuration() { return (int) task.getDuration().getValue(); } /** * Sets the completion percentage of the task. * * @param percentage * The percentage to be set. */ public void setCompletionPercentage(int percentage) { task.setCompletionPercentage(percentage); } /** * Returns the completion percentage of the task. * * @return The completion percentage of the task. */ public int getCompletionPercentage() { return task.getCompletionPercentage(); } public void setTaskInfo(TaskInfo info) { task.setTaskInfo(info); } public TaskInfo getTaskInfo() { return task.getTaskInfo(); } /** * @inheritDoc */ public String toString() { return task.getName(); } /** * @inheritDoc */ public Object getUserObject() { return task; } public void applyThirdDateConstraint() { if (task.getThird() != null) switch (task.getThirdDateConstraint()) { case TaskImpl.EARLIESTBEGIN: if (task.getThird().after(getStart())) { task.setStart(task.getThird().newAdd(0)); } } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -