Rectangle2D dataArea = info.getDataArea();
if (dataArea.contains(x, y)) {
for (int i = 0; i < this.subplots.size(); i++) {
XYPlot subplot = (XYPlot) this.subplots.get(i);
PlotRenderingInfo subplotInfo = info.getSubplotInfo(i);
subplot.handleClick(x, y, subplotInfo);
}
}
Rectangle2D dataArea = info.getDataArea();
if (dataArea.contains(x, y)) {
for (int i = 0; i < this.subplots.size(); i++) {
XYPlot subplot = (XYPlot) this.subplots.get(i);
PlotRenderingInfo subplotInfo = info.getSubplotInfo(i);
subplot.handleClick(x, y, 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 handleClick(int, int, PlotRenderingInfo)
|
|
Method name: void handleClick(int, int, PlotRenderingInfo)
|
Number of AST nodes: 6
|
|
Number of AST nodes: 6
|
|
1 | Rectangle2D dataArea = info.getDataArea();↵ | | 1 | Rectangle2D dataArea = info.getDataArea();↵
|
2 | if (dataArea.contains(x, y)) {↵ | | 2 | if (dataArea.contains(x, y)) {↵
|
3 | for (int i = 0; i < this.subplots.size(); i++) {↵ | | 3 | for (int i = 0; i < this.subplots.size(); i++) {↵
|
4 | XYPlot subplot = (XYPlot) this.subplots.get(i);↵ | | 4 | XYPlot subplot = (XYPlot) this.subplots.get(i);↵
|
5 | PlotRenderingInfo subplotInfo = info.getSubplotInfo(i);↵ | | 5 | PlotRenderingInfo subplotInfo = info.getSubplotInfo(i);↵
|
6 | subplot.handleClick(x, y, subplotInfo);↵ | | 6 | subplot.handleClick(x, y, subplotInfo);↵
|
7 | }↵ | | 7 | }↵
|
8 | } | | 8 | }
|
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.6 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 18 |
-
{Refactorable}
Mapping Summary
Number of mapped statements | 6 |
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) | 3.1 |
Clone type | Type 1 |
Mapped Statements
ID |
Statement |
|
ID |
Statement |
1 | Rectangle2D dataArea = info.getDataArea(); | | 1 | Rectangle2D dataArea = info.getDataArea(); |
2 | if (dataArea.contains(x, y)) | | 2 | if (dataArea.contains(x, y)) |
3 | for (int i = 0; i < this.subplots.size(); i++) | | 3 | for (int i = 0; i < this.subplots.size(); i++) |
4 | XYPlot subplot = (XYPlot)this.subplots.get(i); | | 4 | XYPlot subplot = (XYPlot)this.subplots.get(i); |
5 | PlotRenderingInfo subplotInfo = info.getSubplotInfo(i); | | 5 | PlotRenderingInfo subplotInfo = info.getSubplotInfo(i); |
6 | subplot.handleClick(x, y, subplotInfo); | | 6 | subplot.handleClick(x, y, subplotInfo); |
Precondition Violations (0)
Row |
Violation |