Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 4 | 2 | 0.966 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 351 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/SubSeriesDataset.java |
2 | 8 | 370 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/SubSeriesDataset.java |
3 | 8 | 389 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/SubSeriesDataset.java |
4 | 8 | 408 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/SubSeriesDataset.java |
| |||||
/////////////////////////////////////////////////////////////////////////// // From IntervalXYDataset /////////////////////////////////////////////////////////////////////////// /** * Returns the starting X value for the specified series and item. * * @param series the index of the series of interest (zero-based). * @param item the index of the item of interest (zero-based). * * @return The starting X value for the specified series and item. */ public Number getStartX(int series, int item) { if (this.parent instanceof IntervalXYDataset) { return ((IntervalXYDataset) this.parent).getStartX(this.map[series], item); } else { return getX(series, item); } } |
| |||||
/** * Returns the ending X value for the specified series and item. * * @param series the index of the series of interest (zero-based). * @param item the index of the item of interest (zero-based). * * @return The ending X value for the specified series and item. */ public Number getEndX(int series, int item) { if (this.parent instanceof IntervalXYDataset) { return ((IntervalXYDataset) this.parent).getEndX(this.map[series], item); } else { return getX(series, item); } } |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the index of the series of interest (zero-based). * @param item the index of the item of interest (zero-based). * * @return The starting Y value for the specified series and item. */ public Number getStartY(int series, int item) { if (this.parent instanceof IntervalXYDataset) { return ((IntervalXYDataset) this.parent).getStartY(this.map[series], item); } else { return getY(series, item); } } |
| |||||
/** * Returns the ending Y value for the specified series and item. * * @param series the index of the series of interest (zero-based). * @param item the index of the item of interest (zero-based). * * @return The ending Y value for the specified series and item. */ public Number getEndY(int series, int item) { if (this.parent instanceof IntervalXYDataset) { return ((IntervalXYDataset) this.parent).getEndY(this.map[series], item); } else { return getY(series, item); } } |
| |||
/** * Returns the ending Y value for the specified series and item. * * @param series the index of the series of interest (zero-based). * @param item the index of the item of interest (zero-based). * * @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 index of the series of interest (zero-based). * @param item the index of the item of interest (zero-based). * * @return The starting Y value for the specified series and item. */ /** * Returns the ending X value for the specified series and item. * * @param series the index of the series of interest (zero-based). * @param item the index of the item of interest (zero-based). * * @return The ending X value for the specified series and item. */ /////////////////////////////////////////////////////////////////////////// // From IntervalXYDataset /////////////////////////////////////////////////////////////////////////// /** * Returns the starting X value for the specified series and item. * * @param series the index of the series of interest (zero-based). * @param item the index of the item of interest (zero-based). * * @return The starting X value for the specified series and item. */ public Number [[#variable1a952a00]](int series, int item) { if (this.parent instanceof IntervalXYDataset) { return ((IntervalXYDataset) this.parent). [[#variable1a952a00]](this.map[series], item); } else { return [[#variable1a952980]](series, item); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a952a00]] | getStartX |
1 | 2 | [[#1a952a00]] | getEndX |
1 | 3 | [[#1a952a00]] | getStartY |
1 | 4 | [[#1a952a00]] | getEndY |
2 | 1 | [[#1a952980]] | getX |
2 | 2 | [[#1a952980]] | getX |
2 | 3 | [[#1a952980]] | getY |
2 | 4 | [[#1a952980]] | getY |