Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 26 | 2 | 0.951 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 312 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
2 | 2 | 442 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java |
3 | 2 | 460 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java |
4 | 2 | 391 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java |
5 | 2 | 416 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java |
6 | 2 | 806 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/DynamicTimeSeriesCollection.java |
7 | 2 | 818 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/DynamicTimeSeriesCollection.java |
8 | 2 | 325 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimePeriodValuesCollection.java |
9 | 2 | 337 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimePeriodValuesCollection.java |
10 | 2 | 516 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.java |
11 | 2 | 528 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.java |
12 | 2 | 443 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java |
13 | 2 | 455 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java |
14 | 2 | 243 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java |
15 | 2 | 255 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java |
16 | 2 | 179 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultHighLowDataset.java |
17 | 2 | 120 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultOHLCDataset.java |
18 | 2 | 331 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java |
19 | 2 | 343 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java |
20 | 2 | 237 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultWindDataset.java |
21 | 2 | 252 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeriesCollection.java |
22 | 2 | 265 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeriesCollection.java |
23 | 2 | 356 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java |
24 | 2 | 368 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java |
25 | 2 | 224 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java |
26 | 2 | 237 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java |
| |||||
/** * Returns the y-value for one item in a series. * <p> * This method (from the XYDataset interface) is mapped to the * getMeanValue() method. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The y-value. */ public Number getY(int series, int item) { return getMeanValue(series, item); } |
| |||||
/** * Returns the start y-value for a bin (which is the same as the y-value, * this method exists only to support the general form of the * {@link IntervalXYDataset} interface). * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (zero based). * * @return The y-value. * * @throws IndexOutOfBoundsException if <code>series</code> is outside the * specified range. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the end y-value for a bin (which is the same as the y-value, * this method exists only to support the general form of the * {@link IntervalXYDataset} interface). * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (zero based). * * @return The Y value. * * @throws IndexOutOfBoundsException if <code>series</code> is outside the * specified range. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The value. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the ending Y value for the specified series and item. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The value. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the start y-value. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The value. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the end y-value. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The value. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The starting Y value for the specified series and item. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The ending Y value for the specified series and item. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The value (possibly <code>null</code>). */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the ending Y value for the specified series and item. * * @param series te series (zero-based index). * @param item the item (zero-based index). * * @return The value (possibly <code>null</code>). */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The starting Y value for the specified series and item. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The ending Y value for the specified series and item. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The starting Y value. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the ending Y value for the specified series and item. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The ending Y value. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the y-value for one item in a series. * <p> * This method (from the {@link XYDataset} interface) is mapped to the * {@link #getCloseValue(int, int)} method. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The y-value. * * @see #getYValue(int, int) */ public Number getY(int series, int item) { return getClose(series, item); } |
| |||||
/** * Returns the y-value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The y value. */ public Number getY(int series, int item) { return getClose(series, item); } |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The starting Y value. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The ending Y value. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the y-value for one item within a series. This maps to the * {@link #getWindForce(int, int)} method and is implemented because * <code>WindDataset</code> is an extension of {@link XYDataset}. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The y-value for the item within the series. */ public Number getY(int series, int item) { return getWindForce(series, item); } |
| |||||
/** * Returns the start y-value for an item within a series. This method * maps directly to {@link #getY(int, int)}. * * @param series the series index. * @param item the item index. * * @return The start y-value. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the end y-value for an item within a series. This method * maps directly to {@link #getY(int, int)}. * * @param series the series index. * @param item the item index. * * @return The end y-value. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The starting Y value. */ public Number getStartY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The ending Y value. */ public Number getEndY(int series, int item) { return getY(series, item); } |
| |||||
/** * Returns the start x-value for an item within a series. This method * maps directly to {@link #getX(int, int)}. * * @param series the series index. * @param item the item index. * * @return The x-value. */ public Number getStartX(int series, int item) { return getX(series, item); } |
| |||||
/** * Returns the end x-value for an item within a series. This method * maps directly to {@link #getX(int, int)}. * * @param series the series index. * @param item the item index. * * @return The x-value. */ public Number getEndX(int series, int item) { return getX(series, item); } |
| |||
/** * Returns the ending Y value for the specified series and item. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The value. */ /** * Returns the start y-value for a bin (which is the same as the y-value, * this method exists only to support the general form of the * {@link IntervalXYDataset} interface). * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (zero based). * * @return The y-value. * * @throws IndexOutOfBoundsException if <code>series</code> is outside the * specified range. */ /** * Returns the end x-value for an item within a series. This method * maps directly to {@link #getX(int, int)}. * * @param series the series index. * @param item the item index. * * @return The x-value. */ /** * Returns the start x-value for an item within a series. This method * maps directly to {@link #getX(int, int)}. * * @param series the series index. * @param item the item index. * * @return The x-value. */ /** * Returns the y-value for one item within a series. This maps to the * {@link #getWindForce(int, int)} method and is implemented because * <code>WindDataset</code> is an extension of {@link XYDataset}. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The y-value for the item within the series. */ /** * Returns the y-value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The y value. */ /** * Returns the y-value for one item in a series. * <p> * This method (from the XYDataset interface) is mapped to the * getMeanValue() method. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The y-value. */ /** * Returns the start y-value. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The value. */ /** * Returns the ending Y value for the specified series and item. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The ending Y value. */ /** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The ending Y value. */ /** * Returns the starting Y value for the specified series and item. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The starting Y value. */ /** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The starting Y value. */ /** * Returns the end y-value for a bin (which is the same as the y-value, * this method exists only to support the general form of the * {@link IntervalXYDataset} interface). * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (zero based). * * @return The Y value. * * @throws IndexOutOfBoundsException if <code>series</code> is outside the * specified range. */ /** * Returns the starting Y value for the specified series and item. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The value. */ /** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The ending Y value for the specified series and item. */ /** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The starting Y value for the specified series and item. */ /** * Returns the ending Y value for the specified series and item. * * @param series te series (zero-based index). * @param item the item (zero-based index). * * @return The value (possibly <code>null</code>). */ /** * Returns the end y-value for an item within a series. This method * maps directly to {@link #getY(int, int)}. * * @param series the series index. * @param item the item index. * * @return The end y-value. */ /** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The value (possibly <code>null</code>). */ /** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The ending Y value for the specified series and item. */ /** * Returns the end y-value. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The value. */ /** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The starting Y value for the specified series and item. */ /** * Returns the y-value for one item in a series. * <p> * This method (from the {@link XYDataset} interface) is mapped to the * {@link #getCloseValue(int, int)} method. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The y-value. * * @see #getYValue(int, int) */ /** * Returns the start y-value for an item within a series. This method * maps directly to {@link #getY(int, int)}. * * @param series the series index. * @param item the item index. * * @return The start y-value. */ public Number [[#variable150bdde0]](int series, int item) { return [[#variable150b6ec0]](series, item); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#150bdde0]] | getY |
1 | 2 | [[#150bdde0]] | getStartY |
1 | 3 | [[#150bdde0]] | getEndY |
1 | 4 | [[#150bdde0]] | getStartY |
1 | 5 | [[#150bdde0]] | getEndY |
1 | 6 | [[#150bdde0]] | getStartY |
1 | 7 | [[#150bdde0]] | getEndY |
1 | 8 | [[#150bdde0]] | getStartY |
1 | 9 | [[#150bdde0]] | getEndY |
1 | 10 | [[#150bdde0]] | getStartY |
1 | 11 | [[#150bdde0]] | getEndY |
1 | 12 | [[#150bdde0]] | getStartY |
1 | 13 | [[#150bdde0]] | getEndY |
1 | 14 | [[#150bdde0]] | getStartY |
1 | 15 | [[#150bdde0]] | getEndY |
1 | 16 | [[#150bdde0]] | getY |
1 | 17 | [[#150bdde0]] | getY |
1 | 18 | [[#150bdde0]] | getStartY |
1 | 19 | [[#150bdde0]] | getEndY |
1 | 20 | [[#150bdde0]] | getY |
1 | 21 | [[#150bdde0]] | getStartY |
1 | 22 | [[#150bdde0]] | getEndY |
1 | 23 | [[#150bdde0]] | getStartY |
1 | 24 | [[#150bdde0]] | getEndY |
1 | 25 | [[#150bdde0]] | getStartX |
1 | 26 | [[#150bdde0]] | getEndX |
2 | 1 | [[#150b6ec0]] | getMeanValue |
2 | 2 | [[#150b6ec0]] | getY |
2 | 3 | [[#150b6ec0]] | getY |
2 | 4 | [[#150b6ec0]] | getY |
2 | 5 | [[#150b6ec0]] | getY |
2 | 6 | [[#150b6ec0]] | getY |
2 | 7 | [[#150b6ec0]] | getY |
2 | 8 | [[#150b6ec0]] | getY |
2 | 9 | [[#150b6ec0]] | getY |
2 | 10 | [[#150b6ec0]] | getY |
2 | 11 | [[#150b6ec0]] | getY |
2 | 12 | [[#150b6ec0]] | getY |
2 | 13 | [[#150b6ec0]] | getY |
2 | 14 | [[#150b6ec0]] | getY |
2 | 15 | [[#150b6ec0]] | getY |
2 | 16 | [[#150b6ec0]] | getClose |
2 | 17 | [[#150b6ec0]] | getClose |
2 | 18 | [[#150b6ec0]] | getY |
2 | 19 | [[#150b6ec0]] | getY |
2 | 20 | [[#150b6ec0]] | getWindForce |
2 | 21 | [[#150b6ec0]] | getY |
2 | 22 | [[#150b6ec0]] | getY |
2 | 23 | [[#150b6ec0]] | getY |
2 | 24 | [[#150b6ec0]] | getY |
2 | 25 | [[#150b6ec0]] | getX |
2 | 26 | [[#150b6ec0]] | getX |