Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 8 | 2 | 0.964 | interface_member_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 73 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java |
2 | 11 | 94 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java |
3 | 11 | 115 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYDataset.java |
4 | 11 | 76 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java |
5 | 11 | 97 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java |
6 | 11 | 118 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java |
7 | 11 | 139 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/OHLCDataset.java |
8 | 13 | 103 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYDataset.java |
| |||||
/** * Returns the start x-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The start x-value. */ public double getStartXValue(int series, int 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); |
| |||||
/** * Returns the end x-value (as a double primitive) for an item within a * series. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The end x-value. */ public double getEndXValue(int series, int 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); |
| |||||
/** * Returns the start y-value (as a double primitive) for an item within a * series. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The start y-value. */ public double getStartYValue(int series, int 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); |
| |||||
/** * Returns the high-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The high-value. */ public double getHighValue(int series, int item); /** * Returns the low-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The value. */ public Number getLow(int series, int item); |
| |||||
/** * Returns the low-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The low-value. */ public double getLowValue(int series, int item); /** * Returns the open-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The value. */ public Number getOpen(int series, int item); |
| |||||
/** * Returns the open-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The open-value. */ public double getOpenValue(int series, int item); /** * Returns the 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. */ public Number getClose(int series, int item); |
| |||||
/** * Returns the close-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The close-value. */ public double getCloseValue(int series, int item); /** * Returns the volume for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The value. */ public Number getVolume(int series, int 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. */ public double getXValue(int series, int item); /** * Returns the 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 y-value (possibly <code>null</code>). */ public Number getY(int series, int item); |
| |||
/** * Returns the high-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The high-value. */ /** * Returns the low-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The low-value. */ /** * Returns the start x-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The start x-value. */ /** * Returns the open-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The open-value. */ /** * Returns the end x-value (as a double primitive) for an item within a * series. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The end 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. */ /** * Returns the close-value (as a double primitive) for an item within a * series. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The close-value. */ /** * Returns the start y-value (as a double primitive) for an item within a * series. * * @param series the series index (zero-based). * @param item the item index (zero-based). * * @return The start y-value. */ public double [[#variable1a8c44c0]](int series, int item); /** * Returns the low-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The value. */ /** * Returns the open-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The 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 the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The 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 value. */ /** * Returns the 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 y-value (possibly <code>null</code>). */ /** * Returns the volume for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @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 value. */ public Number [[#variable1a8c4440]](int series, int item); |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a8c44c0]] | getStartXValue |
1 | 2 | [[#1a8c44c0]] | getEndXValue |
1 | 3 | [[#1a8c44c0]] | getStartYValue |
1 | 4 | [[#1a8c44c0]] | getHighValue |
1 | 5 | [[#1a8c44c0]] | getLowValue |
1 | 6 | [[#1a8c44c0]] | getOpenValue |
1 | 7 | [[#1a8c44c0]] | getCloseValue |
1 | 8 | [[#1a8c44c0]] | getXValue |
2 | 1 | [[#1a8c4440]] | getEndX |
2 | 2 | [[#1a8c4440]] | getStartY |
2 | 3 | [[#1a8c4440]] | getEndY |
2 | 4 | [[#1a8c4440]] | getLow |
2 | 5 | [[#1a8c4440]] | getOpen |
2 | 6 | [[#1a8c4440]] | getClose |
2 | 7 | [[#1a8c4440]] | getVolume |
2 | 8 | [[#1a8c4440]] | getY |