if (label != null) { Font labelFont = marker.getLabelFont(); g2.setFont(labelFont); g2.setPaint(marker.getLabelPaint()); Point2D coordinates = calculateRangeMarkerTextAnchorPoint( g2, orientation, dataArea, line.getBounds2D(), marker.getLabelOffset(), LengthAdjustmentType.EXPAND, anchor); TextUtilities.drawAlignedString(label, g2, (float) coordinates.getX(), (float) coordinates.getY(), marker.getLabelTextAnchor()); }
if (label != null) { Font labelFont = marker.getLabelFont(); g2.setFont(labelFont); g2.setPaint(marker.getLabelPaint()); Point2D coordinates = calculateRangeMarkerTextAnchorPoint( g2, orientation, dataArea, line.getBounds2D(), marker.getLabelOffset(), LengthAdjustmentType.EXPAND, anchor); TextUtilities.drawAlignedString(label, g2, (float) coordinates.getX(), (float) coordinates.getY(), marker.getLabelTextAnchor()); }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/AbstractXYItemRenderer.java
Method name: void drawRangeMarker(Graphics2D, CategoryPlot, ValueAxis, Marker, Rectangle2D) Method name: void drawRangeMarker(Graphics2D, XYPlot, ValueAxis, Marker, Rectangle2D)
Number of AST nodes: 6 Number of AST nodes: 6
1
if (label != null) {
1
if (label != null) {
2
                Font labelFont = marker.getLabelFont();
2
                Font labelFont = marker.getLabelFont();
3
                g2.setFont(labelFont);
3
                g2.setFont(labelFont);
4
                g2.setPaint(marker.getLabelPaint());
4
                g2.setPaint(marker.getLabelPaint());
5
                Point2D coordinates = calculateRangeMarkerTextAnchorPoint(
5
                Point2D coordinates = calculateRangeMarkerTextAnchorPoint(
6
                        g2, orientation, dataArea, line.getBounds2D(),
6
                        g2, orientation, dataArea, line.getBounds2D(),
7
                        marker.getLabelOffset(),
7
                        marker.getLabelOffset(),
8
 LengthAdjustmentType.EXPAND,
8
                        LengthAdjustmentType.EXPAND,
9
                        anchor);
9
 anchor);
10
                TextUtilities.drawAlignedString(label, g2,
10
                TextUtilities.drawAlignedString(label, g2,
11
                        (float) coordinates.getX(), (float) coordinates.getY(),
11
                        (float) coordinates.getX(), (float) coordinates.getY(),
12
                        marker.getLabelTextAnchor());
12
                        marker.getLabelTextAnchor());
13
            }
13
            }
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.2
Clones locationClones are in different classes having the same super class
Number of node comparisons37
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements6
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)15.5
    Clone typeType 1
    Mapped Statements
    ID Statement ID Statement
    21
    if (label != null)
    21
    if (label != null)
    22
    Font labelFont = marker.getLabelFont();
    22
    Font labelFont = marker.getLabelFont();
    23
    g2.setFont(labelFont);
    23
    g2.setFont(labelFont);
    24
    g2.setPaint(marker.getLabelPaint());
    24
    g2.setPaint(marker.getLabelPaint());
    25
    Point2D coordinates = calculateRangeMarkerTextAnchorPoint(g2, orientation, dataArea, line.getBounds2D(), marker.getLabelOffset(), LengthAdjustmentType.EXPAND, anchor);
    25
    Point2D coordinates = calculateRangeMarkerTextAnchorPoint(g2, orientation, dataArea, line.getBounds2D(), marker.getLabelOffset(), LengthAdjustmentType.EXPAND, anchor);
    26
    TextUtilities.drawAlignedString(label, g2, (float)coordinates.getX(), (float)coordinates.getY(), marker.getLabelTextAnchor());
    26
    TextUtilities.drawAlignedString(label, g2, (float)coordinates.getX(), (float)coordinates.getY(), marker.getLabelTextAnchor());
    Precondition Violations (0)
    Row Violation