| org.jfree.data.gantt.GanttCategoryDataset
All known Subclasses: org.jfree.data.gantt.TaskSeriesCollection,
Method Summary | |
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 sub-interval. | 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 sub-interval. | 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 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 sub-interval. | 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. |
getEndValue | public Number getEndValue(int row, int column, int subinterval)(Code) | | 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 sub-interval. The end value (possibly null ). |
getEndValue | public Number getEndValue(Comparable rowKey, Comparable columnKey, int subinterval)(Code) | | 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 sub-interval. The end value (possibly null ). |
getPercentComplete | public Number getPercentComplete(int row, int column)(Code) | | Returns the percent complete for a given item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The percent complete. |
getPercentComplete | public Number getPercentComplete(Comparable rowKey, Comparable columnKey)(Code) | | Returns the percent complete for a given item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. The percent complete. |
getPercentComplete | public Number getPercentComplete(int row, int column, int subinterval)(Code) | | 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. The percent complete value (possibly null ). |
getPercentComplete | public Number getPercentComplete(Comparable rowKey, Comparable columnKey, int subinterval)(Code) | | 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. The precent complete value (possibly null ). |
getStartValue | public Number getStartValue(int row, int column, int subinterval)(Code) | | 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). The start value (possibly null ). |
getStartValue | public Number getStartValue(Comparable rowKey, Comparable columnKey, int subinterval)(Code) | | 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 sub-interval. The start value (possibly null ). |
getSubIntervalCount | public int getSubIntervalCount(int row, int column)(Code) | | Returns the number of sub-intervals for a given item.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The sub-interval count. |
getSubIntervalCount | public int getSubIntervalCount(Comparable rowKey, Comparable columnKey)(Code) | | Returns the number of sub-intervals for a given item.
Parameters: rowKey - the row key. Parameters: columnKey - the column key. The sub-interval count. |
|
|