File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainXYPlot.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeCategoryPlot.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 | CategoryPlot plot = (CategoryPlot) 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.subplotArea[i], null, parentState,↵ | |
9 | subplotInfo);↵ | 9 | subplotInfo);↵ | |
10 | } | 10 |
| |
See real code fragment | See real code fragment |
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 | 25 |
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) | 33.0 |
Clone type | Type 2 |
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 | CategoryPlot plot = (CategoryPlot)this.subplots.get(i); | ||||||||||||||||||
18 | PlotRenderingInfo subplotInfo = null; | 17 | PlotRenderingInfo subplotInfo = null; | |||||||||||||||||||
19 | if (info != null) | 18 | if (info != null) | |||||||||||||||||||
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.subplotArea[i], null, parentState, subplotInfo); |
Row | Violation |
---|---|
1 | Expression (XYPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression (CategoryPlot)this.subplots.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted |