CloneSet658


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8220.983method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
181923
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/ChartPanel.java
281937
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/ChartPanel.java
Next
Last
Clone Instance
1
Line Count
8
Source Line
1923
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/ChartPanel.java

/**
 * Restores the auto-range calculation on the domain axis.
 */
public void restoreAutoDomainBounds() {
  Plot p = this.chart.getPlot();
  if (p instanceof Zoomable) {
    Zoomable z = (Zoomable) p;
    // we need to guard against this.zoomPoint being null
    Point2D zp = (this.zoomPoint != null ? this.zoomPoint: new Point());
    z.zoomDomainAxes(0.0, this.info.getPlotInfo(), zp);
  }
}


First
Previous
Clone Instance
2
Line Count
8
Source Line
1937
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/ChartPanel.java

/**
 * Restores the auto-range calculation on the range axis.
 */
public void restoreAutoRangeBounds() {
  Plot p = this.chart.getPlot();
  if (p instanceof Zoomable) {
    Zoomable z = (Zoomable) p;
    // we need to guard against this.zoomPoint being null
    Point2D zp = (this.zoomPoint != null ? this.zoomPoint: new Point());
    z.zoomRangeAxes(0.0, this.info.getPlotInfo(), zp);
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Restores the auto-range calculation on the range axis.
     */
/**
     * Restores the auto-range calculation on the domain axis.
     */
public void [[#variable18ce0840]]() {
  Plot p = this.chart.getPlot();
  if (p instanceof Zoomable) {
    Zoomable z = (Zoomable) p;
    // we need to guard against this.zoomPoint being null
    Point2D zp = (this.zoomPoint != null ? this.zoomPoint: new Point());
    z. [[#variable18ce0800]](0.0, this.info.getPlotInfo(), zp);
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ce0840]]
restoreAutoDomainBounds 
12[[#18ce0840]]
restoreAutoRangeBounds 
21[[#18ce0800]]
zoomDomainAxes 
22[[#18ce0800]]
zoomRangeAxes