CloneSet1097


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5310.980method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15284
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.java
25177
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java
35213
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
284
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.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);
}


Next
Previous
Clone Instance
2
Line Count
5
Source Line
177
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.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.
 */
public int indexOf(VectorSeries series) {
  if (series == null) {
    throw new IllegalArgumentException("Null \'series\' argument.");
  }
  return this.data.indexOf(series);
}


First
Previous
Clone Instance
3
Line Count
5
Source Line
213
Source File
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(XYSeries series) {
  if (series == null) {
    throw new IllegalArgumentException("Null \'series\' argument.");
  }
  return this.data.indexOf(series);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18e8e3e0]]
TimeSeries 
12[[#18e8e3e0]]
VectorSeries 
13[[#18e8e3e0]]
XYSeries