for (int i = 0; i < this.subplots.size(); i++) {
XYPlot plot = (XYPlot) this.subplots.get(i);
PlotRenderingInfo subplotInfo = null;
if (info != null) {
subplotInfo = new PlotRenderingInfo(info.getOwner());
info.addSubplotInfo(subplotInfo);
}
plot.draw(g2, this.subplotAreas[i], anchor, parentState,
subplotInfo);
}
for (int i = 0; i < this.subplots.size(); i++) {
XYPlot plot = (XYPlot) this.subplots.get(i);
PlotRenderingInfo subplotInfo = null;
if (info != null) {
subplotInfo = new PlotRenderingInfo(info.getOwner());
info.addSubplotInfo(subplotInfo);
}
plot.draw(g2, this.subplotAreas[i], anchor, parentState,
subplotInfo);
}
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainXYPlot.java
|
|
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeXYPlot.java
|
Method name: void draw(Graphics2D, Rectangle2D, Point2D, PlotState, PlotRenderingInfo)
|
|
Method name: void draw(Graphics2D, Rectangle2D, Point2D, PlotState, PlotRenderingInfo)
|
Number of AST nodes: 7
|
|
Number of AST nodes: 7
|
|
1 | for (int i = 0; i < this.subplots.size(); i++) {↵ | | 1 | for (int i = 0; i < this.subplots.size(); i++) {↵
|
2 | XYPlot plot = (XYPlot) this.subplots.get(i);↵ | | 2 | XYPlot plot = (XYPlot) this.subplots.get(i);↵
|
3 | PlotRenderingInfo subplotInfo = null;↵ | | 3 | PlotRenderingInfo subplotInfo = null;↵
|
4 | if (info != null) {↵ | | 4 | if (info != null) {↵
|
5 | subplotInfo = new PlotRenderingInfo(info.getOwner());↵ | | 5 | subplotInfo = new PlotRenderingInfo(info.getOwner());↵
|
6 | info.addSubplotInfo(subplotInfo);↵ | | 6 | info.addSubplotInfo(subplotInfo);↵
|
7 | }↵ | | 7 | }↵
|
8 | plot.draw(g2, this.subplotAreas[i], anchor, parentState,↵ | | 8 | plot.draw(g2, this.subplotAreas[i], anchor, parentState,↵
|
9 | subplotInfo);↵ | | 9 | subplotInfo);↵
|
10 | } | | 10 | }
|
See real code fragment |
|
See real code fragment |
Summary
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 1 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.3 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 25 |
-
{Refactorable}
Mapping Summary
Number of mapped statements | 7 |
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) | 9.2 |
Clone type | Type 1 |
Mapped Statements
ID |
Statement |
|
ID |
Statement |
16 | for (int i = 0; i < this.subplots.size(); i++) | | 15 | for (int i = 0; i < this.subplots.size(); i++) |
17 | XYPlot plot = (XYPlot)this.subplots.get(i); | | 16 | XYPlot plot = (XYPlot)this.subplots.get(i); |
18 | PlotRenderingInfo subplotInfo = null; | | 17 | PlotRenderingInfo subplotInfo = null; |
19 | | | 18 | |
20 | subplotInfo = new PlotRenderingInfo(info.getOwner()); | | 19 | subplotInfo = new PlotRenderingInfo(info.getOwner()); |
21 | info.addSubplotInfo(subplotInfo); | | 20 | info.addSubplotInfo(subplotInfo); |
22 | plot.draw(g2, this.subplotAreas[i], anchor, parentState, subplotInfo); | | 21 | plot.draw(g2, this.subplotAreas[i], anchor, parentState, subplotInfo); |
Precondition Violations (0)
Row |
Violation |