public interface IntervalCategoryDataset extends CategoryDataset { /** * Returns the start value for the interval for a given series and category. * * @param series the series (zero-based index). * @param category the category (zero-based index). * * @return The start value (possibly null). * * @see #getEndValue(int, int) */ public Number getStartValue(int series, int category); /** * Returns the start value for the interval for a given series and category. * * @param series the series key. * @param category the category key. * * @return The start value (possibly null). * * @see #getEndValue(Comparable, Comparable) */ public Number getStartValue(Comparable series, Comparable category); /** * Returns the end value for the interval for a given series and category. * * @param series the series (zero-based index). * @param category the category (zero-based index). * * @return The end value (possibly null). * * @see #getStartValue(int, int) */ public Number getEndValue(int series, int category); /** * Returns the end value for the interval for a given series and category. * * @param series the series key. * @param category the category key. * * @return The end value (possibly null). * * @see #getStartValue(Comparable, Comparable) */ public Number getEndValue(Comparable series, Comparable category);
public interface StatisticalCategoryDataset extends CategoryDataset { /** * Returns the mean value for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The mean value. */ public Number getMeanValue(int row, int column); /** * Returns the mean value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The mean value. */ public Number getMeanValue(Comparable rowKey, Comparable columnKey); /** * Returns the standard deviation value for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The standard deviation. */ public Number getStdDevValue(int row, int column); /** * Returns the standard deviation value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The standard deviation. */ public Number getStdDevValue(Comparable rowKey, Comparable columnKey);
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/data/category/IntervalCategoryDataset.java File path: /jfreechart-1.0.10/src/org/jfree/data/statistics/StatisticalCategoryDataset.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public interface IntervalCategoryDataset extends CategoryDataset {
1
public interface StatisticalCategoryDataset extends CategoryDataset {
2
    /**
2
    /**
3
     * Returns the start value for the interval for a given series and category.
3
     * Returns the mean value for an item.
4
     *
4
     *
5
     * @param series  the series (zero-based index).
5
     * @param row  the row index (zero-based).
6
     * @param category  the category (zero-based index).
6
     * @param column  the column index (zero-based).
7
     *
7
     *
8
     * @return The start value (possibly null).
8
     * @return The mean value
9
     *
10
     * @see #getEndValue(int, int)
9
.
11
     */
10
     */
12
    public Number getStartValue(int series, int category);
11
    public Number getMeanValue(int row, int column);
13
    /**
12
    /**
14
     * Returns the start value for the interval for a given series and category.
13
     * Returns the mean value for an item.
15
     *
14
     *
16
     * @param series  the series key.
15
     * @param rowKey  the row key.
17
     * @param category  the category key.
16
     * @param columnKey  the columnKey.
18
     *
17
     *
19
     * @return The start value (possibly null).
18
     * @return The mean value
20
     *
21
     * @see #getEndValue(Comparable, Comparable)
19
.
22
     */
20
     */
23
    public Number getStartValue(Comparable series, Comparable category);
21
    public Number getMeanValue(Comparable rowKey, Comparable columnKey);
24
    /**
22
    /**
25
     * Returns the end value for the interval for a given series and category.
23
     * Returns the standard deviation value for an item.
26
     *
24
     *
27
     * @param series  the series (zero-based index).
25
     * @param row  the row index (zero-based).
28
     * @param category  the category (zero-based index).
26
     * @param column  the column index (zero-based).
29
     *
27
     *
30
     * @return The end value (possibly null).
28
     * @return The 
31
     *
32
     * @see #getStartValue(int, int)
29
standard deviation.
33
     */
30
     */
34
    public Number getEndValue(int series, int category);
31
    public Number getStdDevValue(int row, int column);
35
    /**
32
    /**
36
     * Returns the end value for the interval for a given series and category.
33
     * Returns the standard deviation value for an item.
37
     *
34
     *
38
     * @param series  the series key.
35
     * @param rowKey  the row key.
39
     * @param category  the category key.
36
     * @param columnKey  the columnKey.
40
     *
37
     *
41
     * @return The end value (possibly null).
38
     * @return The 
42
     *
43
     * @see #getStartValue(Comparable, Comparable)
39
standard deviation.
44
     */
40
     */
45
    public Number getEndValue(Comparable series, Comparable category);
41
    public Number getStdDevValue(Comparable rowKey, Comparable columnKey);
Summary
Number of common nesting structure subtrees0
Number of refactorable cases0
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones location
Number of node comparisons0