if (orientation == PlotOrientation.HORIZONTAL) { double w = usableSize * plot.getWeight() / this.totalWeight; this.subplotAreas[i] = new Rectangle2D.Double(x, y, w, adjustedPlotArea.getHeight()); x = x + w + this.gap; } else if (orientation == PlotOrientation.VERTICAL) { double h = usableSize * plot.getWeight() / this.totalWeight; this.subplotAreas[i] = new Rectangle2D.Double(x, y, adjustedPlotArea.getWidth(), h); y = y + h + this.gap; }
if (orientation == PlotOrientation.VERTICAL) { double w = usableSize * plot.getWeight() / this.totalWeight; this.subplotAreas[i] = new Rectangle2D.Double(x, y, w, adjustedPlotArea.getHeight()); x = x + w + this.gap; } else if (orientation == PlotOrientation.HORIZONTAL) { double h = usableSize * plot.getWeight() / this.totalWeight; this.subplotAreas[i] = new Rectangle2D.Double(x, y, adjustedPlotArea.getWidth(), h); y = y + h + this.gap; }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainCategoryPlot.java File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeXYPlot.java
Method name: AxisSpace calculateAxisSpace(Graphics2D, Rectangle2D) Method name: AxisSpace calculateAxisSpace(Graphics2D, Rectangle2D)
Number of AST nodes: 8 Number of AST nodes: 8
1
if (orientation == PlotOrientation.HORIZONTAL) {
1
if (orientation == PlotOrientation.VERTICAL) {
2
                double w = usableSize * plot.getWeight() / this.totalWeight;
2
                double w = usableSize * plot.getWeight() / this.totalWeight;
3
                this.subplotAreas[i] = new Rectangle2D.Double(x, y, w,
3
                this.subplotAreas[i] = new Rectangle2D.Double(x, y, w,
4
                        adjustedPlotArea.getHeight());
4
                        adjustedPlotArea.getHeight());
5
                x = x + w + this.gap;
5
                x = x + w + this.gap;
6
            }
6
            }
7
            else if (orientation == PlotOrientation.VERTICAL) {
7
            else if (orientation == PlotOrientation.HORIZONTAL) {
8
                double h = usableSize * plot.getWeight() / this.totalWeight;
8
                double h = usableSize * plot.getWeight() / this.totalWeight;
9
                this.subplotAreas[i] = new Rectangle2D.Double(x, y,
9
                this.subplotAreas[i] = new Rectangle2D.Double(x, y,
10
                        adjustedPlotArea.getWidth(), h);
10
                        adjustedPlotArea.getWidth(), h);
11
                y = y + h + this.gap;
11
                y = y + h + this.gap;
12
            }
12
            }
Summary
Number of common nesting structure subtrees1
Number of refactorable cases0
Number of non-refactorable cases1
Time elapsed for finding largest common nesting structure subtrees (ms)0.4
Clones locationClones are in different classes having the same super class
Number of node comparisons50
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements8
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)14.4
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    29
    if (orientation == PlotOrientation.HORIZONTAL)
    29
    if (orientation == PlotOrientation.HORIZONTAL)
    27
    if (orientation == PlotOrientation.VERTICAL)
    Differences
    Expression1Expression2Difference
    HORIZONTALVERTICALVARIABLE_NAME_MISMATCH
    27
    if (orientation == PlotOrientation.VERTICAL)
    30
    double w = usableSize * plot.getWeight() / this.totalWeight;
    30
    double w = usableSize * plot.getWeight() / this.totalWeight;
    28
    double w = usableSize * plot.getWeight() / this.totalWeight;
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.CategoryPlotorg.jfree.chart.plot.XYPlotSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression plot cannot be unified with expression plot , because common superclass org.jfree.chart.plot.Plot does not declare member(s) public int getWeight()
    28
    double w = usableSize * plot.getWeight() / this.totalWeight;
    31
    this.subplotAreas[i] = new Rectangle2D.Double(x, y, w, adjustedPlotArea.getHeight());
    29
    this.subplotAreas[i] = new Rectangle2D.Double(x, y, w, adjustedPlotArea.getHeight());
    32
    x = x + w + this.gap;
    30
    x = x + w + this.gap;
    33
    else if (orientation == PlotOrientation.VERTICAL)
    33
    else if (orientation == PlotOrientation.VERTICAL)
    31
    else if (orientation == PlotOrientation.HORIZONTAL)
    Differences
    Expression1Expression2Difference
    VERTICALHORIZONTALVARIABLE_NAME_MISMATCH
    31
    else if (orientation == PlotOrientation.HORIZONTAL)
    34
    double h = usableSize * plot.getWeight() / this.totalWeight;
    34
    double h = usableSize * plot.getWeight() / this.totalWeight;
    32
    double h = usableSize * plot.getWeight() / this.totalWeight;
    Differences
    Expression1Expression2Difference
    org.jfree.chart.plot.CategoryPlotorg.jfree.chart.plot.XYPlotSUBCLASS_TYPE_MISMATCH
    Preondition Violations
    Expression plot cannot be unified with expression plot , because common superclass org.jfree.chart.plot.Plot does not declare member(s) public int getWeight()
    32
    double h = usableSize * plot.getWeight() / this.totalWeight;
    35
    this.subplotAreas[i] = new Rectangle2D.Double(x, y, adjustedPlotArea.getWidth(), h);
    33
    this.subplotAreas[i] = new Rectangle2D.Double(x, y, adjustedPlotArea.getWidth(), h);
    36
    y = y + h + this.gap;
    34
    y = y + h + this.gap;
    Precondition Violations (3)
    Row Violation
    1Expression plot cannot be unified with expression plot , because common superclass org.jfree.chart.plot.Plot does not declare member(s) public int getWeight()
    2Expression plot cannot be unified with expression plot , because common superclass org.jfree.chart.plot.Plot does not declare member(s) public int getWeight()
    3Clone fragment #1 returns variables x, y , while Clone fragment #2 returns variables x, y