Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 4 | 2 | 0.977 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 426 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/CyclicXYItemRenderer.java |
2 | 7 | 99 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/AbstractIntervalXYDataset.java |
3 | 7 | 117 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/AbstractIntervalXYDataset.java |
4 | 7 | 90 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/AbstractXYDataset.java |
| |||||
/** * Returns the y-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 y-value. */ public double getYValue(int series, int item) { double result = Double.NaN; Number y = getY(series, item); if (y != null) { result = y.doubleValue(); } return result; } |
| |||||
/** * 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 value. */ public double getStartYValue(int series, int item) { double result = Double.NaN; Number y = getStartY(series, item); if (y != null) { result = y.doubleValue(); } return result; } |
| |||||
/** * Returns the end y-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 value. */ public double getEndYValue(int series, int item) { double result = Double.NaN; Number y = getEndY(series, item); if (y != null) { result = y.doubleValue(); } return result; } |
| |||||
/** * Returns the 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 value. */ public double getYValue(int series, int item) { double result = Double.NaN; Number y = getY(series, item); if (y != null) { result = y.doubleValue(); } return result; } |
| |||
/** * Returns the y-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 y-value. */ /** * Returns the end y-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 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 value. */ /** * Returns the 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 value. */ public double [[#variable1a985420]](int series, int item) { double result = Double.NaN; Number y = [[#variable1a985400]](series, item); if (y != null) { result = y.doubleValue(); } return result; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a985420]] | getYValue |
1 | 2 | [[#1a985420]] | getStartYValue |
1 | 3 | [[#1a985420]] | getEndYValue |
1 | 4 | [[#1a985420]] | getYValue |
2 | 1 | [[#1a985400]] | getY |
2 | 2 | [[#1a985400]] | getStartY |
2 | 3 | [[#1a985400]] | getEndY |
2 | 4 | [[#1a985400]] | getY |