Plot p = this.chart.getPlot(); if (p instanceof Zoomable) { Zoomable z = (Zoomable) p; z.zoomRangeAxes(this.zoomInFactor, this.info.getPlotInfo(), translateScreenToJava2D(new Point((int) x, (int) y))); }
Plot p = this.chart.getPlot(); if (p instanceof Zoomable) { Zoomable z = (Zoomable) p; z.zoomDomainAxes(this.zoomOutFactor, this.info.getPlotInfo(), translateScreenToJava2D(new Point((int) x, (int) y))); }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/swt/org/jfree/experimental/chart/swt/ChartComposite.java File path: /jfreechart-1.0.10/swt/org/jfree/experimental/chart/swt/ChartComposite.java
Method name: void zoomInRange(double, double) Method name: void zoomOutDomain(double, double)
Number of AST nodes: 4 Number of AST nodes: 4
1
Plot p = this.chart.getPlot();
1
Plot p = this.chart.getPlot();
2
        if (p instanceof Zoomable) {
2
        if (p instanceof Zoomable) {
3
            Zoomable z = (Zoomable) p;
3
            Zoomable z = (Zoomable) p;
4
            z.zoomRangeAxes(this.zoomInFactor, this.info.getPlotInfo(), 
4
            z.zoomDomainAxes(this.zoomOutFactor, this.info.getPlotInfo(), 
5
                    translateScreenToJava2D(new Point((int) x, (int) y)));
5
                    translateScreenToJava2D(new Point((int) x, (int) y)));
6
        }
6
        }
Summary
Number of common nesting structure subtrees1
Number of refactorable cases1
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.1
Clones locationClones are declared in the same class
Number of node comparisons10
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements4
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)343.4
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    1
    Plot p = this.chart.getPlot();
    1
    Plot p = this.chart.getPlot();
    2
    if (p instanceof Zoomable)
    2
    if (p instanceof Zoomable)
    3
    Zoomable z = (Zoomable)p;
    3
    Zoomable z = (Zoomable)p;
    4
    z.zoomRangeAxes(this.zoomInFactor, this.info.getPlotInfo(), translateScreenToJava2D(new Point((int)x, (int)y)));
    4
    z.zoomRangeAxes(this.zoomInFactor, this.info.getPlotInfo(), translateScreenToJava2D(new Point((int)x, (int)y)));
    4
    z.zoomDomainAxes(this.zoomOutFactor, this.info.getPlotInfo(), translateScreenToJava2D(new Point((int)x, (int)y)));
    Differences
    Expression1Expression2Difference
    zoomInFactorzoomOutFactorVARIABLE_NAME_MISMATCH
    zoomRangeAxeszoomDomainAxesMETHOD_INVOCATION_NAME_MISMATCH
    Preondition Violations
    Expression z.zoomRangeAxes(this.zoomInFactor,this.info.getPlotInfo(),translateScreenToJava2D(new Point((int)x,(int)y))) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression z.zoomDomainAxes(this.zoomOutFactor,this.info.getPlotInfo(),translateScreenToJava2D(new Point((int)x,(int)y))) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression z.zoomRangeAxes(this.zoomInFactor,this.info.getPlotInfo(),translateScreenToJava2D(new Point((int)x,(int)y))) is a void method call, and thus it cannot be parameterized
    Expression z.zoomDomainAxes(this.zoomOutFactor,this.info.getPlotInfo(),translateScreenToJava2D(new Point((int)x,(int)y))) is a void method call, and thus it cannot be parameterized
    4
    z.zoomDomainAxes(this.zoomOutFactor, this.info.getPlotInfo(), translateScreenToJava2D(new Point((int)x, (int)y)));
    Precondition Violations (4)
    Row Violation
    1Expression z.zoomRangeAxes(this.zoomInFactor,this.info.getPlotInfo(),translateScreenToJava2D(new Point((int)x,(int)y))) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression z.zoomDomainAxes(this.zoomOutFactor,this.info.getPlotInfo(),translateScreenToJava2D(new Point((int)x,(int)y))) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    3Expression z.zoomRangeAxes(this.zoomInFactor,this.info.getPlotInfo(),translateScreenToJava2D(new Point((int)x,(int)y))) is a void method call, and thus it cannot be parameterized
    4Expression z.zoomDomainAxes(this.zoomOutFactor,this.info.getPlotInfo(),translateScreenToJava2D(new Point((int)x,(int)y))) is a void method call, and thus it cannot be parameterized