⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mutabletask.java

📁 It is all about project scheduling. GanttProject is a tool for creating a project schedule by means
💻 JAVA
字号:
package net.sourceforge.ganttproject.task;import java.awt.Color;import net.sourceforge.ganttproject.GanttCalendar;import net.sourceforge.ganttproject.shape.ShapePaint;/** * Created by IntelliJ IDEA. *  * @author bard Date: 06.02.2004 */public interface MutableTask {    void setName(String name);    void setMilestone(boolean isMilestone);    void setPriority(int priority);    void setStart(GanttCalendar start);    void setEnd(GanttCalendar end);    void setDuration(TaskLength length);    void shift(TaskLength shift);    void setCompletionPercentage(int percentage);//    void setStartFixed(boolean isFixed);//    void setFinishFixed(boolean isFixed);    void setShape(ShapePaint shape);    void setColor(Color color);    void setNotes(String notes);    void addNotes(String notes);    void setExpand(boolean expand);    /**     * Sets the task as critical or not. The method is used be TaskManager after     * having run a CriticalPathAlgorithm to set the critical tasks. When     * painted, the tasks are rendered as critical using Task.isCritical(). So,     * a task is set as critical only if critical path is displayed.     *      * @param critical     *            <code>true</code> if this is critical, <code>false</code>     *            otherwise.     */    void setCritical(boolean critical);    void setTaskInfo(TaskInfo taskInfo);		void setProjectTask (boolean projectTask);	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -