Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
5 | 3 | 1 | 0.980 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 5 | 284 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.java |
2 | 5 | 177 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java |
3 | 5 | 213 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java |
| |||||
/** * Returns the index of the specified series, or -1 if that series is not * present in the dataset. * * @param series the series (<code>null</code> not permitted). * * @return The series index. * * @since 1.0.6 */ public int indexOf(TimeSeries series) { if (series == null) { throw new IllegalArgumentException("Null \'series\' argument."); } return this.data.indexOf(series); } |
| |||||
/** * Returns the index of the specified series, or -1 if that series is not * present in the dataset. * * @param series the series (<code>null</code> not permitted). * * @return The series index. */ public int indexOf(VectorSeries series) { if (series == null) { throw new IllegalArgumentException("Null \'series\' argument."); } return this.data.indexOf(series); } |
| |||||
/** * Returns the index of the specified series, or -1 if that series is not * present in the dataset. * * @param series the series (<code>null</code> not permitted). * * @return The series index. * * @since 1.0.6 */ public int indexOf(XYSeries series) { if (series == null) { throw new IllegalArgumentException("Null \'series\' argument."); } return this.data.indexOf(series); } |
| |||
/** * Returns the index of the specified series, or -1 if that series is not * present in the dataset. * * @param series the series (<code>null</code> not permitted). * * @return The series index. */ /** * Returns the index of the specified series, or -1 if that series is not * present in the dataset. * * @param series the series (<code>null</code> not permitted). * * @return The series index. * * @since 1.0.6 */ /** * Returns the index of the specified series, or -1 if that series is not * present in the dataset. * * @param series the series (<code>null</code> not permitted). * * @return The series index. * * @since 1.0.6 */ public int indexOf( [[#variable18e8e3e0]] series) { if (series == null) { throw new IllegalArgumentException("Null \'series\' argument."); } return this.data.indexOf(series); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18e8e3e0]] | TimeSeries |
1 | 2 | [[#18e8e3e0]] | VectorSeries |
1 | 3 | [[#18e8e3e0]] | XYSeries |