if (orientation == PlotOrientation.VERTICAL) { areaState.getSeriesArea().addPoint((int) transX1, (int) transY2); } else if (orientation == PlotOrientation.HORIZONTAL) { areaState.getSeriesArea().addPoint((int) transY2, (int) transX1); }
if (orientation == PlotOrientation.VERTICAL) { // Add the last point (x,0) areaState.getSeriesArea().addPoint((int) transX1, (int) transY2); } else if (orientation == PlotOrientation.HORIZONTAL) { // Add the last point (x,0) areaState.getSeriesArea().addPoint((int) transY2, (int) transX1); }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StackedXYAreaRenderer.java File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StackedXYAreaRenderer.java
Method name: void drawItem(Graphics2D, XYItemRendererState, Rectangle2D, PlotRenderingInfo, XYPlot, ValueAxis, ValueAxis, XYDataset, int, int, CrosshairState, int) Method name: void drawItem(Graphics2D, XYItemRendererState, Rectangle2D, PlotRenderingInfo, XYPlot, ValueAxis, ValueAxis, XYDataset, int, int, CrosshairState, int)
Number of AST nodes: 4 Number of AST nodes: 4
1
if (orientation == PlotOrientation.VERTICAL) {
1
if (orientation == PlotOrientation.VERTICAL) {
2
                    // Add the last point (x,0)
2
                    areaState.getSeriesArea().addPoint((int) transX1,
3
                    areaState.getSeriesArea().addPoint((int) transX1,
3
                            (int) transY2);
4
                            (int) transY2);
4
                }
5
                }
5
                else if (orientation == PlotOrientation.HORIZONTAL) {
6
                else if (orientation == PlotOrientation.HORIZONTAL) {
7
                    // Add the last point (x,0)
6
                    areaState.getSeriesArea().addPoint((int) transY2,
8
                    areaState.getSeriesArea().addPoint((int) transY2,
7
                            (int) transX1);
9
                            (int) transX1);
8
                }
10
                }
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.5
Clones locationClones are in the same method
Number of node comparisons14
  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)5.9
    Clone typeType 1
    Mapped Statements
    ID Statement ID Statement
    22
    if (orientation == PlotOrientation.VERTICAL)
    46
    if (orientation == PlotOrientation.VERTICAL)
    23
    areaState.getSeriesArea().addPoint((int)transX1, (int)transY2);
    47
    areaState.getSeriesArea().addPoint((int)transX1, (int)transY2);
    24
    else if (orientation == PlotOrientation.HORIZONTAL)
    48
    else if (orientation == PlotOrientation.HORIZONTAL)
    25
    areaState.getSeriesArea().addPoint((int)transY2, (int)transX1);
    49
    areaState.getSeriesArea().addPoint((int)transY2, (int)transX1);
    Precondition Violations (0)
    Row Violation