1 41 42 package org.jfree.data; 43 44 49 public interface IntervalCategoryDataset extends CategoryDataset { 50 51 59 public Number getStartValue(int series, int category); 60 61 69 public Number getStartValue(Comparable series, Comparable category); 70 71 79 public Number getEndValue(int series, int category); 80 81 89 public Number getEndValue(Comparable series, Comparable category); 90 91 } 92 | Popular Tags |