File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java | |||
Method name: void drawDomainMarkers(Graphics2D, Rectangle2D, int, Layer)
|
Method name: void drawDomainMarkers(Graphics2D, Rectangle2D, int, Layer)
|
|||
Number of AST nodes: 5 | Number of AST nodes: 5 | |||
1 | if (markers != null && axis != null) {↵ | 1 | if (markers != null && axis != null) {↵ | |
2 | Iterator iterator = markers.iterator();↵ | 2 | Iterator iterator = markers.iterator();↵ | |
3 | while (iterator.hasNext()) {↵ | 3 | while (iterator.hasNext()) {↵ | |
4 | CategoryMarker marker = (CategoryMarker) iterator.next();↵ | 4 | Marker marker = (Marker) iterator.next();↵ | |
5 | r.drawDomainMarker(g2, this, axis, marker, dataArea);↵ | 5 | r.drawDomainMarker(g2, this, axis, marker, dataArea);↵ | |
6 | }↵ | 6 | }↵ | |
7 | } | 7 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 1 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.4 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 13 |
Number of mapped statements | 5 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 486.3 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6 | if (markers != null && axis != null) |
| 8 | if (markers != null && axis != null) | |||||||||||||||||||
7 | Iterator iterator = markers.iterator(); | 9 | Iterator iterator = markers.iterator(); | ||||||||||||||||||||
8 | while (iterator.hasNext()) | 10 | while (iterator.hasNext()) | ||||||||||||||||||||
9 | CategoryMarker marker = (CategoryMarker)iterator.next(); |
| 11 | Marker marker = (Marker)iterator.next(); | |||||||||||||||||||
10 | r.drawDomainMarker(g2, this, axis, marker, dataArea); |
| 12 | r.drawDomainMarker(g2, this, axis, marker, dataArea); |
Row | Violation |
---|---|
1 | Expression (CategoryMarker)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression (Marker)iterator.next() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression axis cannot be unified with expression axis , because common superclass type org.jfree.chart.axis.Axis cannot be passed as an argument to public abstract void drawDomainMarker(java.awt.Graphics2D, org.jfree.chart.plot.CategoryPlot, org.jfree.chart.axis.CategoryAxis, org.jfree.chart.plot.CategoryMarker, java.awt.geom.Rectangle2D) |
4 | Expression marker cannot be unified with expression marker , because common superclass type org.jfree.chart.plot.Marker cannot be passed as an argument to public abstract void drawDomainMarker(java.awt.Graphics2D, org.jfree.chart.plot.CategoryPlot, org.jfree.chart.axis.CategoryAxis, org.jfree.chart.plot.CategoryMarker, java.awt.geom.Rectangle2D) |
5 | Expression r cannot be unified with expression r , because common superclass org.jfree.chart.LegendItemSource does not declare member(s) public abstract void drawDomainMarker(java.awt.Graphics2D, org.jfree.chart.plot.CategoryPlot, org.jfree.chart.axis.CategoryAxis, org.jfree.chart.plot.CategoryMarker, java.awt.geom.Rectangle2D) , public abstract void drawDomainMarker(java.awt.Graphics2D, org.jfree.chart.plot.XYPlot, org.jfree.chart.axis.ValueAxis, org.jfree.chart.plot.Marker, java.awt.geom.Rectangle2D) |