CloneSet1382


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4301.000method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14354
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/ComparableObjectSeries.java
24801
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeries.java
34433
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeries.java
Next
Last
Clone Instance
1
Line Count
4
Source Line
354
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/ComparableObjectSeries.java

/**
 * Removes all data items from the series and, unless the series is 
 * already empty, sends a {@link SeriesChangeEvent} to all registered 
 * listeners.
 */
public void clear() {
  if (this.data.size() > 0) {
    this.data.clear();
    fireSeriesChanged();
  }
}


Next
Previous
Clone Instance
2
Line Count
4
Source Line
801
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeries.java

/**
 * Removes all data items from the series and sends a
 * {@link SeriesChangeEvent} to all registered listeners.
 */
public void clear() {
  if (this.data.size() > 0) {
    this.data.clear();
    fireSeriesChanged();
  }
}


First
Previous
Clone Instance
3
Line Count
4
Source Line
433
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeries.java

/**
 * Removes all data items from the series.
 */
public void clear() {
  if (this.data.size() > 0) {
    this.data.clear();
    fireSeriesChanged();
  }
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Removes all data items from the series and, unless the series is 
     * already empty, sends a {@link SeriesChangeEvent} to all registered 
     * listeners.
     */
/**
     * Removes all data items from the series and sends a
     * {@link SeriesChangeEvent} to all registered listeners.
     */
/**
     * Removes all data items from the series.
     */
public void clear() {
  if (this.data.size() > 0) {
    this.data.clear();
    fireSeriesChanged();
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None