CloneSet204


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
19330.962class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1191129
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java
219846
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
3211144
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
Next
Last
Clone Instance
1
Line Count
19
Source Line
1129
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java

/**
 * Clears the range axes from the plot and sends a {@link PlotChangeEvent}
 * to all registered listeners.
 */
public void clearRangeAxes() {
  for (int i = 0; i < this.rangeAxes.size(); i++) {
    ValueAxis axis = (ValueAxis) this.rangeAxes.get(i);
    if (axis != null) {
      axis.removeChangeListener(this );
    }
  }
  this.rangeAxes.clear();
  fireChangeEvent();
}

/**
 * Configures the range axes.
 */
public void configureRangeAxes() {
  for (int i = 0; i < this.rangeAxes.size(); i++) {
    ValueAxis axis = (ValueAxis) this.rangeAxes.get(i);
    if (axis != null) {
      axis.configure();
    }
  }
}


Next
Previous
Clone Instance
2
Line Count
19
Source Line
846
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java

/**
 * Clears the domain axes from the plot and sends a {@link PlotChangeEvent}
 * to all registered listeners.
 *
 * @see #clearRangeAxes()
 */
public void clearDomainAxes() {
  for (int i = 0; i < this.domainAxes.size(); i++) {
    ValueAxis axis = (ValueAxis) this.domainAxes.get(i);
    if (axis != null) {
      axis.removeChangeListener(this );
    }
  }
  this.domainAxes.clear();
  fireChangeEvent();
}

/**
 * Configures the domain axes.
 */
public void configureDomainAxes() {
  for (int i = 0; i < this.domainAxes.size(); i++) {
    ValueAxis axis = (ValueAxis) this.domainAxes.get(i);
    if (axis != null) {
      axis.configure();
    }
  }
}


First
Previous
Clone Instance
3
Line Count
21
Source Line
1144
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java

/**
 * Clears the range axes from the plot and sends a {@link PlotChangeEvent}
 * to all registered listeners.
 *
 * @see #clearDomainAxes()
 */
public void clearRangeAxes() {
  for (int i = 0; i < this.rangeAxes.size(); i++) {
    ValueAxis axis = (ValueAxis) this.rangeAxes.get(i);
    if (axis != null) {
      axis.removeChangeListener(this );
    }
  }
  this.rangeAxes.clear();
  fireChangeEvent();
}

/**
 * Configures the range axes.
 *
 * @see #configureDomainAxes()
 */
public void configureRangeAxes() {
  for (int i = 0; i < this.rangeAxes.size(); i++) {
    ValueAxis axis = (ValueAxis) this.rangeAxes.get(i);
    if (axis != null) {
      axis.configure();
    }
  }
}


Clone AbstractionParameter Count: 3Parameter Bindings

/**
     * Clears the range axes from the plot and sends a {@link PlotChangeEvent}
     * to all registered listeners.
     */
/**
     * Clears the domain axes from the plot and sends a {@link PlotChangeEvent}
     * to all registered listeners.
     *
     * @see #clearRangeAxes()
     */
/**
     * Clears the range axes from the plot and sends a {@link PlotChangeEvent}
     * to all registered listeners.
     *
     * @see #clearDomainAxes()
     */
public void [[#variable1a809f40]]() {
  for (int i = 0; i < this. [[#variable1a809ba0]].size(); i++) {
    ValueAxis axis = (ValueAxis) this. [[#variable1a809ba0]].get(i);
    if (axis != null) {
      axis.removeChangeListener(this );
    }
  }
  this. [[#variable1a809ba0]].clear();
  fireChangeEvent();
}

/**
     * Configures the range axes.
     */
/**
     * Configures the domain axes.
     */
/**
     * Configures the range axes.
     *
     * @see #configureDomainAxes()
     */
public void [[#variable1a818440]]() {
  for (int i = 0; i < this. [[#variable1a809ba0]].size(); i++) {
    ValueAxis axis = (ValueAxis) this. [[#variable1a809ba0]].get(i);
    if (axis != null) {
      axis.configure();
    }
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a809f40]]
clearRangeAxes 
12[[#1a809f40]]
clearDomainAxes 
13[[#1a809f40]]
clearRangeAxes 
21[[#1a809ba0]]
rangeAxes 
22[[#1a809ba0]]
domainAxes 
23[[#1a809ba0]]
rangeAxes 
31[[#1a818440]]
configureRangeAxes 
32[[#1a818440]]
configureDomainAxes 
33[[#1a818440]]
configureRangeAxes