Method Summary |
|
public void | add(TaskSeries series) Adds a series to the dataset and sends a
org.jfree.data.general.DatasetChangeEvent to all registered
listeners. |
public boolean | equals(Object obj) Tests this instance for equality with an arbitrary object.
Parameters: obj - the object (null permitted). |
public int | getColumnCount() Returns the number of column in the dataset. |
public int | getColumnIndex(Comparable columnKey) Returns the column index for a column key.
Parameters: columnKey - the columnKey. |
public Comparable | getColumnKey(int index) Returns a column key.
Parameters: index - the column index. |
public List | getColumnKeys() Returns a list of the column keys in the dataset. |
public Number | getEndValue(Comparable rowKey, Comparable columnKey) Returns the end value for a task. |
public Number | getEndValue(int row, int column) Returns the end value for a task.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getEndValue(int row, int column, int subinterval) Returns the end value of a sub-interval for a given item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). Parameters: subinterval - the subinterval. |
public Number | getEndValue(Comparable rowKey, Comparable columnKey, int subinterval) Returns the end value of a sub-interval for a given item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. Parameters: subinterval - the subinterval. |
public Number | getPercentComplete(int row, int column) Returns the percent complete for a given item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getPercentComplete(Comparable rowKey, Comparable columnKey) Returns the percent complete for a given item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getPercentComplete(int row, int column, int subinterval) Returns the percentage complete value of a sub-interval for a given item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). Parameters: subinterval - the sub-interval. |
public Number | getPercentComplete(Comparable rowKey, Comparable columnKey, int subinterval) Returns the percentage complete value of a sub-interval for a given item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. Parameters: subinterval - the sub-interval. |
public int | getRowCount() Returns the number of rows (series) in the collection. |
public int | getRowIndex(Comparable rowKey) Returns the row index for the given row key.
Parameters: rowKey - the row key. |
public Comparable | getRowKey(int index) Returns the key for a row.
Parameters: index - the row index (zero-based). |
public List | getRowKeys() Returns the row keys. |
public TaskSeries | getSeries(Comparable key) Returns a series from the collection.
Parameters: key - the series key (null not permitted). |
public TaskSeries | getSeries(int series) Returns a series from the collection.
Parameters: series - the series index (zero-based). |
public int | getSeriesCount() Returns the number of series in the collection. |
public Comparable | getSeriesKey(int series) Returns the name of a series.
Parameters: series - the series index (zero-based). |
public Number | getStartValue(Comparable rowKey, Comparable columnKey) Returns the start value for a task. |
public Number | getStartValue(int row, int column) Returns the start value for a task.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public Number | getStartValue(int row, int column, int subinterval) Returns the start value of a sub-interval for a given item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). Parameters: subinterval - the sub-interval index (zero-based). |
public Number | getStartValue(Comparable rowKey, Comparable columnKey, int subinterval) Returns the start value of a sub-interval for a given item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. Parameters: subinterval - the subinterval. |
public int | getSubIntervalCount(int row, int column) Returns the number of sub-intervals for a given item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public int | getSubIntervalCount(Comparable rowKey, Comparable columnKey) Returns the number of sub-intervals for a given item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getValue(Comparable rowKey, Comparable columnKey) Returns the value for an item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. |
public Number | getValue(int row, int column) Returns the value for a task.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
public void | remove(TaskSeries series) Removes a series from the collection and sends
a
org.jfree.data.general.DatasetChangeEvent to all registered listeners. |
public void | remove(int series) Removes a series from the collection and sends
a
org.jfree.data.general.DatasetChangeEvent to all registered listeners. |
public void | removeAll() Removes all the series from the collection and sends
a
org.jfree.data.general.DatasetChangeEvent to all registered listeners. |
public void | seriesChanged(SeriesChangeEvent event) Called when a series belonging to the dataset changes. |