Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 3 | 2 | 0.974 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 210 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java |
2 | 3 | 249 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java |
3 | 3 | 262 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java |
| |||||
/** * 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) { YIntervalSeries s = (YIntervalSeries) this.data.get(series); return new Double(s.getYValue(item)); } |
| |||||
/** * Returns the start y-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The start y-value. */ public Number getStartY(int series, int item) { YIntervalSeries s = (YIntervalSeries) this.data.get(series); return new Double(s.getYLowValue(item)); } |
| |||||
/** * Returns the end y-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The end y-value. */ public Number getEndY(int series, int item) { YIntervalSeries s = (YIntervalSeries) this.data.get(series); return new Double(s.getYHighValue(item)); } |
| |||
/** * Returns the end y-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The end y-value. */ /** * Returns the start y-value for an item within a series. * * @param series the series index. * @param item the item index. * * @return The start y-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. */ public Number [[#variable18d10b20]](int series, int item) { YIntervalSeries s = (YIntervalSeries) this.data.get(series); return new Double(s. [[#variable18d119c0]](item)); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18d10b20]] | getY |
1 | 2 | [[#18d10b20]] | getStartY |
1 | 3 | [[#18d10b20]] | getEndY |
2 | 1 | [[#18d119c0]] | getYValue |
2 | 2 | [[#18d119c0]] | getYLowValue |
2 | 3 | [[#18d119c0]] | getYHighValue |