Package | Description |
---|---|
org.jfree.data.gantt |
Data interfaces and classes for Gantt charts.
|
Modifier and Type | Method and Description |
---|---|
Task |
TaskSeries.get(int index)
Returns a task from the series.
|
Task |
TaskSeries.get(java.lang.String description)
Returns the task in the series that has the specified description.
|
Task |
Task.getSubtask(int index)
Returns a sub-task.
|
Modifier and Type | Method and Description |
---|---|
void |
TaskSeries.add(Task task)
Adds a task to the series and sends a
SeriesChangeEvent to all registered
listeners. |
void |
Task.addSubtask(Task subtask)
Adds a sub-task to the task.
|
void |
TaskSeries.remove(Task task)
Removes a task from the series and sends
a
SeriesChangeEvent
to all registered listeners. |
void |
Task.removeSubtask(Task subtask)
Removes a sub-task from the task.
|