Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 27 | 2 | 0.957 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 281 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java |
2 | 2 | 306 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java |
3 | 2 | 339 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java |
4 | 2 | 365 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java |
5 | 2 | 191 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java |
6 | 2 | 231 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java |
7 | 2 | 257 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java |
8 | 2 | 283 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java |
9 | 2 | 309 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java |
10 | 2 | 350 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java |
11 | 2 | 377 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java |
12 | 2 | 405 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java |
13 | 2 | 284 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java |
14 | 2 | 305 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java |
15 | 2 | 326 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java |
16 | 2 | 347 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java |
17 | 2 | 368 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java |
18 | 2 | 193 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYDataset.java |
19 | 2 | 194 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYZDataset.java |
20 | 2 | 280 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYZDataset.java |
21 | 2 | 223 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java |
22 | 2 | 251 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java |
23 | 2 | 238 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java |
24 | 2 | 250 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java |
25 | 2 | 262 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java |
26 | 2 | 275 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java |
27 | 2 | 288 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java |
| |||||
/** * Returns the x-value for an item within a series. The x-values may or * may not be returned in ascending order, that is up to the class * implementing the interface. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The x-value (never <code>null</code>). */ public Number getX(int series, int item) { return new Double(getXValue(series, item)); } |
| |||||
/** * Returns the y-value for an item within a series. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The y-value (possibly <code>null</code>). */ public Number getY(int series, int item) { return new Double(getYValue(series, item)); } |
| |||||
/** * Returns the starting X 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 getStartX(int series, int item) { return new Double(getStartXValue(series, item)); } |
| |||||
/** * Returns the ending X 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 getEndX(int series, int item) { return new Double(getEndXValue(series, item)); } |
| |||||
/** * Returns the x-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The x-value. */ public Number getX(int series, int item) { return new Double(getXValue(series, item)); } |
| |||||
/** * Returns the open-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The open-value. */ public Number getOpen(int series, int item) { return new Double(getOpenValue(series, item)); } |
| |||||
/** * Returns the close-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The close-value. */ public Number getClose(int series, int item) { return new Double(getCloseValue(series, item)); } |
| |||||
/** * Returns the high-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The high-value. */ public Number getHigh(int series, int item) { return new Double(getHighValue(series, item)); } |
| |||||
/** * Returns the low-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The low-value. */ public Number getLow(int series, int item) { return new Double(getLowValue(series, item)); } |
| |||||
/** * Returns the x-value for an item within a series. The x-values may or * may not be returned in ascending order, that is up to the class * implementing the interface. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The x-value. */ public Number getX(int series, int item) { return new Double(getXValue(series, item)); } |
| |||||
/** * Returns the starting X 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 X value for the specified series and item. * * @see #getStartXValue(int, int) */ public Number getStartX(int series, int item) { return new Double(getStartXValue(series, item)); } |
| |||||
/** * Returns the ending X 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 X value for the specified series and item. * * @see #getEndXValue(int, int) */ public Number getEndX(int series, int item) { return new Double(getEndXValue(series, item)); } |
| |||||
/** * Returns the ending x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The ending x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getEndXValue(int, int) */ public Number getEndX(int series, int item) { return new Double(getEndXValue(series, item)); } |
| |||||
/** * Returns the ending y-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The ending y-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getEndYValue(int, int) */ public Number getEndY(int series, int item) { return new Double(getEndYValue(series, item)); } |
| |||||
/** * Returns the starting x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The starting x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getStartXValue(int, int) */ public Number getStartX(int series, int item) { return new Double(getStartXValue(series, item)); } |
| |||||
/** * Returns the starting y-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The starting y-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getStartYValue(int, int) */ public Number getStartY(int series, int item) { return new Double(getStartYValue(series, item)); } |
| |||||
/** * Returns the x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getXValue(int, int) */ public Number getX(int series, int item) { return new Double(getXValue(series, item)); } |
| |||||
/** * Returns the x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getXValue(int, int) */ public Number getX(int series, int item) { return new Double(getXValue(series, item)); } |
| |||||
/** * Returns the x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getXValue(int, int) */ public Number getX(int series, int item) { return new Double(getXValue(series, item)); } |
| |||||
/** * Returns the z-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The z-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getZ(int, int) */ public Number getZ(int series, int item) { return new Double(getZValue(series, item)); } |
| |||||
/** * Returns the x-value for an item within a series. Note that this method * creates a new {@link Double} instance every time it is called---use * {@link #getXValue(int, int)} instead, if possible. * * @param series the series index. * @param item the item index. * * @return The x-value. */ public Number getX(int series, int item) { return new Double(getXValue(series, item)); } |
| |||||
/** * Returns the y-value for an item within a series. Note that this method * creates a new {@link Double} instance every time it is called---use * {@link #getYValue(int, int)} instead, if possible. * * @param series the series index. * @param item the item index. * * @return The y-value. */ public Number getY(int series, int item) { return new Double(getYValue(series, item)); } |
| |||||
/** * Returns the y-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The y-value. */ public Number getY(int series, int item) { return new Double(getYValue(series, item)); } |
| |||||
/** * Returns the start x-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The x-value. */ public Number getStartX(int series, int item) { return new Double(getStartXValue(series, item)); } |
| |||||
/** * Returns the end x-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The x-value. */ public Number getEndX(int series, int item) { return new Double(getEndXValue(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 new Double(getStartYValue(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 new Double(getEndYValue(series, item)); } |
| |||
/** * Returns the low-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The low-value. */ /** * Returns the high-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The high-value. */ /** * Returns the ending X 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 y-value for an item within a series. Note that this method * creates a new {@link Double} instance every time it is called---use * {@link #getYValue(int, int)} instead, if possible. * * @param series the series index. * @param item the item index. * * @return The y-value. */ /** * 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 close-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The close-value. */ /** * 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. */ /** * Returns the starting X 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 x-value for an item within a series. Note that this method * creates a new {@link Double} instance every time it is called---use * {@link #getXValue(int, int)} instead, if possible. * * @param series the series index. * @param item the item index. * * @return The x-value. */ /** * Returns the open-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The open-value. */ /** * Returns the z-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The z-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getZ(int, int) */ /** * Returns the end x-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The x-value. */ /** * Returns the y-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The y-value. */ /** * Returns the y-value for an item within a series. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The y-value (possibly <code>null</code>). */ /** * Returns the x-value for an item within a series. The x-values may or * may not be returned in ascending order, that is up to the class * implementing the interface. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The x-value (never <code>null</code>). */ /** * Returns the x-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The x-value. */ /** * Returns the ending X 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 X value for the specified series and item. * * @see #getEndXValue(int, int) */ /** * Returns the x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getXValue(int, int) */ /** * Returns the start x-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The x-value. */ /** * Returns the starting X 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 X value for the specified series and item. * * @see #getStartXValue(int, int) */ /** * Returns the x-value for an item within a series. The x-values may or * may not be returned in ascending order, that is up to the class * implementing the interface. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The x-value. */ /** * Returns the x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getXValue(int, int) */ /** * Returns the starting y-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The starting y-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getStartYValue(int, int) */ /** * Returns the starting x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The starting x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getStartXValue(int, int) */ /** * Returns the ending y-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The ending y-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getEndYValue(int, int) */ /** * Returns the ending x-value for an item within a series. * * @param series the series index (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item index (in the range <code>0</code> to * <code>getItemCount(series)</code>). * * @return The ending x-value. * * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not * within the specified range. * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not * within the specified range. * * @see #getEndXValue(int, int) */ public Number [[#variable1ab0c520]](int series, int item) { return new Double( [[#variable1ab0c4c0]](series, item)); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1ab0c520]] | getX |
1 | 2 | [[#1ab0c520]] | getY |
1 | 3 | [[#1ab0c520]] | getStartX |
1 | 4 | [[#1ab0c520]] | getEndX |
1 | 5 | [[#1ab0c520]] | getX |
1 | 6 | [[#1ab0c520]] | getOpen |
1 | 7 | [[#1ab0c520]] | getClose |
1 | 8 | [[#1ab0c520]] | getHigh |
1 | 9 | [[#1ab0c520]] | getLow |
1 | 10 | [[#1ab0c520]] | getX |
1 | 11 | [[#1ab0c520]] | getStartX |
1 | 12 | [[#1ab0c520]] | getEndX |
1 | 13 | [[#1ab0c520]] | getEndX |
1 | 14 | [[#1ab0c520]] | getEndY |
1 | 15 | [[#1ab0c520]] | getStartX |
1 | 16 | [[#1ab0c520]] | getStartY |
1 | 17 | [[#1ab0c520]] | getX |
1 | 18 | [[#1ab0c520]] | getX |
1 | 19 | [[#1ab0c520]] | getX |
1 | 20 | [[#1ab0c520]] | getZ |
1 | 21 | [[#1ab0c520]] | getX |
1 | 22 | [[#1ab0c520]] | getY |
1 | 23 | [[#1ab0c520]] | getY |
1 | 24 | [[#1ab0c520]] | getStartX |
1 | 25 | [[#1ab0c520]] | getEndX |
1 | 26 | [[#1ab0c520]] | getStartY |
1 | 27 | [[#1ab0c520]] | getEndY |
2 | 1 | [[#1ab0c4c0]] | getXValue |
2 | 2 | [[#1ab0c4c0]] | getYValue |
2 | 3 | [[#1ab0c4c0]] | getStartXValue |
2 | 4 | [[#1ab0c4c0]] | getEndXValue |
2 | 5 | [[#1ab0c4c0]] | getXValue |
2 | 6 | [[#1ab0c4c0]] | getOpenValue |
2 | 7 | [[#1ab0c4c0]] | getCloseValue |
2 | 8 | [[#1ab0c4c0]] | getHighValue |
2 | 9 | [[#1ab0c4c0]] | getLowValue |
2 | 10 | [[#1ab0c4c0]] | getXValue |
2 | 11 | [[#1ab0c4c0]] | getStartXValue |
2 | 12 | [[#1ab0c4c0]] | getEndXValue |
2 | 13 | [[#1ab0c4c0]] | getEndXValue |
2 | 14 | [[#1ab0c4c0]] | getEndYValue |
2 | 15 | [[#1ab0c4c0]] | getStartXValue |
2 | 16 | [[#1ab0c4c0]] | getStartYValue |
2 | 17 | [[#1ab0c4c0]] | getXValue |
2 | 18 | [[#1ab0c4c0]] | getXValue |
2 | 19 | [[#1ab0c4c0]] | getXValue |
2 | 20 | [[#1ab0c4c0]] | getZValue |
2 | 21 | [[#1ab0c4c0]] | getXValue |
2 | 22 | [[#1ab0c4c0]] | getYValue |
2 | 23 | [[#1ab0c4c0]] | getYValue |
2 | 24 | [[#1ab0c4c0]] | getStartXValue |
2 | 25 | [[#1ab0c4c0]] | getEndXValue |
2 | 26 | [[#1ab0c4c0]] | getStartYValue |
2 | 27 | [[#1ab0c4c0]] | getEndYValue |