1 42 43 package org.jfree.data.gantt; 44 45 import org.jfree.data.category.IntervalCategoryDataset; 46 47 51 public interface GanttCategoryDataset extends IntervalCategoryDataset { 52 53 61 public Number getPercentComplete(int row, int column); 62 63 71 public Number getPercentComplete(Comparable rowKey, Comparable columnKey); 72 73 81 public int getSubIntervalCount(int row, int column); 82 83 91 public int getSubIntervalCount(Comparable rowKey, Comparable columnKey); 92 93 102 public Number getStartValue(int row, int column, int subinterval); 103 104 113 public Number getStartValue(Comparable rowKey, Comparable columnKey, 114 int subinterval); 115 116 125 public Number getEndValue(int row, int column, int subinterval); 126 127 136 public Number getEndValue(Comparable rowKey, Comparable columnKey, 137 int subinterval); 138 139 148 public Number getPercentComplete(int row, int column, int subinterval); 149 150 159 public Number getPercentComplete(Comparable rowKey, Comparable columnKey, 160 int subinterval); 161 162 } 163 | Popular Tags |