Package org.jfree.data.gantt
Class TaskSeries
java.lang.Object
org.jfree.data.general.Series
org.jfree.data.gantt.TaskSeries
- All Implemented Interfaces:
Serializable,Cloneable
public class TaskSeries extends Series
A series that contains zero, one or many
Task objects.
This class is used as a building block for the TaskSeriesCollection
class that can be used to construct basic Gantt charts.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description TaskSeries(String name)Constructs a new series with the specified name. -
Method Summary
Modifier and Type Method Description voidadd(Task task)Adds a task to the series and sends aSeriesChangeEventto all registered listeners.Objectclone()Returns an independent copy of this series.booleanequals(Object obj)Tests this object for equality with an arbitrary object.Taskget(int index)Returns a task from the series.Taskget(String description)Returns the task in the series that has the specified description.intgetItemCount()Returns the number of items in the series.ListgetTasks()Returns an unmodifialble list of the tasks in the series.voidremove(Task task)Removes a task from the series and sends aSeriesChangeEventto all registered listeners.voidremoveAll()Removes all tasks from the series and sends aSeriesChangeEventto all registered listeners.Methods inherited from class org.jfree.data.general.Series
addChangeListener, addPropertyChangeListener, addVetoableChangeListener, firePropertyChange, fireSeriesChanged, fireVetoableChange, getDescription, getKey, getNotify, hashCode, isEmpty, notifyListeners, removeChangeListener, removePropertyChangeListener, removeVetoableChangeListener, setDescription, setKey, setNotify
-
Constructor Details
-
TaskSeries
Constructs a new series with the specified name.- Parameters:
name- the series name (nullnot permitted).
-
-
Method Details
-
add
Adds a task to the series and sends aSeriesChangeEventto all registered listeners.- Parameters:
task- the task (nullnot permitted).
-
remove
Removes a task from the series and sends aSeriesChangeEventto all registered listeners.- Parameters:
task- the task.
-
removeAll
Removes all tasks from the series and sends aSeriesChangeEventto all registered listeners. -
getItemCount
Returns the number of items in the series.- Specified by:
getItemCountin classSeries- Returns:
- The item count.
-
get
Returns a task from the series.- Parameters:
index- the task index (zero-based).- Returns:
- The task.
-
get
Returns the task in the series that has the specified description.- Parameters:
description- the name (nullnot permitted).- Returns:
- The task (possibly
null).
-
getTasks
Returns an unmodifialble list of the tasks in the series.- Returns:
- The tasks.
-
equals
Tests this object for equality with an arbitrary object. -
clone
Returns an independent copy of this series.- Overrides:
clonein classSeries- Returns:
- A clone of the series.
- Throws:
CloneNotSupportedException- if there is some problem cloning the dataset.
-