File path: /jfreechart-1.0.10/swt/org/jfree/experimental/chart/swt/editor/SWTPlotEditor.java | File path: /jfreechart-1.0.10/swt/org/jfree/experimental/chart/swt/editor/SWTPlotEditor.java | |||
Method name: void updatePlotProperties(Plot)
|
Method name: void updatePlotProperties(Plot)
|
|||
Number of AST nodes: 9 | Number of AST nodes: 9 | |||
1 | Axis domainAxis = null;↵ | 1 | Axis rangeAxis = null;↵ | |
2 | if (plot instanceof CategoryPlot) {↵ | 2 | if (plot instanceof CategoryPlot) {↵ | |
3 | CategoryPlot p = (CategoryPlot) plot;↵ | 3 | CategoryPlot p = (CategoryPlot) plot;↵ | |
4 | domainAxis = p.getDomainAxis();↵ | 4 | rangeAxis = p.getRangeAxis();↵ | |
5 | }↵ | 5 | }↵ | |
6 | else if (plot instanceof XYPlot) {↵ | 6 | else if (plot instanceof XYPlot) {↵ | |
7 | XYPlot p = (XYPlot) plot;↵ | 7 | XYPlot p = (XYPlot) plot;↵ | |
8 | domainAxis = p.getDomainAxis();↵ | 8 | rangeAxis = p.getRangeAxis();↵ | |
9 | }↵ | 9 | }↵ | |
10 | if (domainAxis != null)↵ | 10 | if (rangeAxis != null)↵ | |
11 | this.domainAxisPropertyPanel.setAxisProperties(domainAxis); | 11 | this.rangeAxisPropertyPanel.setAxisProperties(rangeAxis); | |
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.8 |
Clones location | Clones are in the same method |
Number of node comparisons | 38 |
Number of mapped statements | 9 |
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) | 104.1 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5 | Axis domainAxis = null; |
| 15 | Axis rangeAxis = null; | |||||||||||||||
6 | if (plot instanceof CategoryPlot) | 16 | if (plot instanceof CategoryPlot) | ||||||||||||||||
7 | CategoryPlot p = (CategoryPlot)plot; | 17 | CategoryPlot p = (CategoryPlot)plot; | ||||||||||||||||
8 | domainAxis = p.getDomainAxis(); |
| 18 | rangeAxis = p.getRangeAxis(); | |||||||||||||||
9 | else if (plot instanceof XYPlot) | 19 | else if (plot instanceof XYPlot) | ||||||||||||||||
10 | XYPlot p = (XYPlot)plot; | 20 | XYPlot p = (XYPlot)plot; | ||||||||||||||||
11 | domainAxis = p.getDomainAxis(); |
| 21 | rangeAxis = p.getRangeAxis(); | |||||||||||||||
12 | if (domainAxis != null) |
| 22 | if (rangeAxis != null) | |||||||||||||||
13 | this.domainAxisPropertyPanel.setAxisProperties(domainAxis); |
| 23 | this.rangeAxisPropertyPanel.setAxisProperties(rangeAxis); |
Row | Violation |
---|---|
1 | Expression p.getDomainAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression p.getRangeAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression p.getDomainAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
4 | Expression p.getRangeAxis() cannot be parameterized, because it has dependencies to/from statements that will be extracted |