Class TaskSeriesCollection

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(TaskSeries series)
      Adds a series to the dataset and sends a DatasetChangeEvent to all registered listeners.
      java.lang.Object clone()
      Returns an independent copy of this dataset.
      boolean equals​(java.lang.Object obj)
      Tests this instance for equality with an arbitrary object.
      int getColumnCount()
      Returns the number of column in the dataset.
      int getColumnIndex​(java.lang.Comparable columnKey)
      Returns the column index for a column key.
      java.lang.Comparable getColumnKey​(int index)
      Returns a column key.
      java.util.List getColumnKeys()
      Returns a list of the column keys in the dataset.
      java.lang.Number getEndValue​(int row, int column)
      Returns the end value for a task.
      java.lang.Number getEndValue​(int row, int column, int subinterval)
      Returns the end value of a sub-interval for a given item.
      java.lang.Number getEndValue​(java.lang.Comparable rowKey, java.lang.Comparable columnKey)
      Returns the end value for a task.
      java.lang.Number getEndValue​(java.lang.Comparable rowKey, java.lang.Comparable columnKey, int subinterval)
      Returns the end value of a sub-interval for a given item.
      java.lang.Number getPercentComplete​(int row, int column)
      Returns the percent complete for a given item.
      java.lang.Number getPercentComplete​(int row, int column, int subinterval)
      Returns the percentage complete value of a sub-interval for a given item.
      java.lang.Number getPercentComplete​(java.lang.Comparable rowKey, java.lang.Comparable columnKey)
      Returns the percent complete for a given item.
      java.lang.Number getPercentComplete​(java.lang.Comparable rowKey, java.lang.Comparable columnKey, int subinterval)
      Returns the percentage complete value of a sub-interval for a given item.
      int getRowCount()
      Returns the number of rows (series) in the collection.
      int getRowIndex​(java.lang.Comparable rowKey)
      Returns the row index for the given row key.
      java.lang.Comparable getRowKey​(int index)
      Returns the key for a row.
      java.util.List getRowKeys()
      Returns the row keys.
      TaskSeries getSeries​(int series)
      Returns a series from the collection.
      TaskSeries getSeries​(java.lang.Comparable key)
      Returns a series from the collection.
      int getSeriesCount()
      Returns the number of series in the collection.
      java.lang.Comparable getSeriesKey​(int series)
      Returns the name of a series.
      java.lang.Number getStartValue​(int row, int column)
      Returns the start value for a task.
      java.lang.Number getStartValue​(int row, int column, int subinterval)
      Returns the start value of a sub-interval for a given item.
      java.lang.Number getStartValue​(java.lang.Comparable rowKey, java.lang.Comparable columnKey)
      Returns the start value for a task.
      java.lang.Number getStartValue​(java.lang.Comparable rowKey, java.lang.Comparable columnKey, int subinterval)
      Returns the start value of a sub-interval for a given item.
      int getSubIntervalCount​(int row, int column)
      Returns the number of sub-intervals for a given item.
      int getSubIntervalCount​(java.lang.Comparable rowKey, java.lang.Comparable columnKey)
      Returns the number of sub-intervals for a given item.
      java.lang.Number getValue​(int row, int column)
      Returns the value for a task.
      java.lang.Number getValue​(java.lang.Comparable rowKey, java.lang.Comparable columnKey)
      Returns the value for an item.
      void remove​(int series)
      Removes a series from the collection and sends a DatasetChangeEvent to all registered listeners.
      void remove​(TaskSeries series)
      Removes a series from the collection and sends a DatasetChangeEvent to all registered listeners.
      void removeAll()
      Removes all the series from the collection and sends a DatasetChangeEvent to all registered listeners.
      void seriesChanged​(SeriesChangeEvent event)
      Called when a series belonging to the dataset changes.
      • Methods inherited from class java.lang.Object

        finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait