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());
Font labelFont = marker.getLabelFont(); g2.setFont(labelFont); g2.setPaint(marker.getLabelPaint()); Point2D coordinates = calculateRangeMarkerTextAnchorPoint( g2, orientation, dataArea, rect, marker.getLabelOffset(), marker.getLabelOffsetType(), 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/category/AbstractCategoryItemRenderer.java
Method name: void drawRangeMarker(Graphics2D, CategoryPlot, ValueAxis, Marker, Rectangle2D) Method name: void drawRangeMarker(Graphics2D, CategoryPlot, ValueAxis, Marker, Rectangle2D)
Number of AST nodes: 5 Number of AST nodes: 5
1
Font labelFont = marker.getLabelFont();
1
Font labelFont = marker.getLabelFont();
2
                g2.setFont(labelFont);
2
                g2.setFont(labelFont);
3
                g2.setPaint(marker.getLabelPaint());
3
                g2.setPaint(marker.getLabelPaint());
4
                Point2D coordinates = calculateRangeMarkerTextAnchorPoint(
4
                Point2D coordinates = calculateRangeMarkerTextAnchorPoint(
5
                        g2, orientation, dataArea, line.getBounds2D(),
5
                        g2, orientation, dataArea, rect,
6
                        marker.getLabelOffset(), LengthAdjustmentType.EXPAND,
6
                        marker.getLabelOffset(), marker.getLabelOffsetType(),
7
                        anchor);
7
                        anchor);
8
                TextUtilities.drawAlignedString(label, g2,
8
                TextUtilities.drawAlignedString(label, g2,
9
                        (float) coordinates.getX(), (float) coordinates.getY(),
9
                        (float) coordinates.getX(), (float) coordinates.getY(),
10
                        marker.getLabelTextAnchor());
10
                        marker.getLabelTextAnchor());
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.0
Clones locationClones are in the same method
Number of node comparisons25
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements5
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)0.0
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    22
    Font labelFont = marker.getLabelFont();
    87
    Font labelFont = marker.getLabelFont();
    23
    g2.setFont(labelFont);
    88
    g2.setFont(labelFont);
    24
    g2.setPaint(marker.getLabelPaint());
    89
    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);
    90
    Point2D coordinates = calculateRangeMarkerTextAnchorPoint(g2, orientation, dataArea, rect, marker.getLabelOffset(), marker.getLabelOffsetType(), anchor);
    Differences
    Expression1Expression2Difference
    line.getBounds2D()rectTYPE_COMPATIBLE_REPLACEMENT
    LengthAdjustmentType.EXPANDmarker.getLabelOffsetType()TYPE_COMPATIBLE_REPLACEMENT
    Preondition Violations
    Expression line.getBounds2D() cannot be parameterized, because it has dependencies to/from statements that will be extracted
    90
    Point2D coordinates = calculateRangeMarkerTextAnchorPoint(g2, orientation, dataArea, rect, marker.getLabelOffset(), marker.getLabelOffsetType(), anchor);
    26
    TextUtilities.drawAlignedString(label, g2, (float)coordinates.getX(), (float)coordinates.getY(), marker.getLabelTextAnchor());
    91
    TextUtilities.drawAlignedString(label, g2, (float)coordinates.getX(), (float)coordinates.getY(), marker.getLabelTextAnchor());
    Precondition Violations (1)
    Row Violation
    1Expression line.getBounds2D() cannot be parameterized, because it has dependencies to/from statements that will be extracted