File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java | |||
Method name: Stroke lookupSeriesStroke(int)
|
Method name: Shape lookupSeriesShape(int)
|
|||
Number of AST nodes: 11 | Number of AST nodes: 11 | |||
1 | if (this.stroke != null) {↵ | 1 | if (this.shape != null) {↵ | |
2 | return this.stroke;↵ | 2 | return this.shape;↵ | |
3 | }↵ | 3 | }↵ | |
4 | // otherwise look up the paint table↵ | 4 | // otherwise look up the shape list↵ | |
5 | Stroke result = getSeriesStroke(series);↵ | 5 | Shape result = getSeriesShape(series);↵ | |
6 | if (result == null && this.autoPopulateSeriesStroke) {↵ | 6 | if (result == null && this.autoPopulateSeriesShape) {↵ | |
7 | DrawingSupplier supplier = getDrawingSupplier();↵ | 7 | DrawingSupplier supplier = getDrawingSupplier();↵ | |
8 | if (supplier != null) {↵ | 8 | if (supplier != null) {↵ | |
9 | result = supplier.getNextStroke();↵ | 9 | result = supplier.getNextShape();↵ | |
10 | setSeriesStroke(series, result, false);↵ | 10 | setSeriesShape(series, result, false);↵ | |
11 | }↵ | 11 | }↵ | |
12 | }↵ | 12 | }↵ | |
13 | if (result == null) {↵ | 13 | if (result == null) {↵ | |
14 | result = this.baseStroke;↵ | 14 | result = this.baseShape;↵ | |
15 | }↵ | 15 | }↵ | |
16 | return result; | 16 |
| |
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.6 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 27 |
Number of mapped statements | 6 |
Number of unmapped statements in the first code fragment | 5 |
Number of unmapped statements in the second code fragment | 5 |
Time elapsed for statement mapping (ms) | 4.0 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (this.stroke != null) |
| 1 | if (this.shape != null) | ||||||||||||||||||
|
| 2 | return this.shape; | |||||||||||||||||||
2 | return this.stroke; |
| | |||||||||||||||||||
| 3 | Shape result = getSeriesShape(series); | ||||||||||||||||||||
3 | Stroke result = getSeriesStroke(series); | | ||||||||||||||||||||
4 | if (result == null && this.autoPopulateSeriesStroke) |
| 4 | if (result == null && this.autoPopulateSeriesShape) | ||||||||||||||||||
5 | DrawingSupplier supplier = getDrawingSupplier(); | 5 | DrawingSupplier supplier = getDrawingSupplier(); | |||||||||||||||||||
6 | if (supplier != null) | 6 | if (supplier != null) | |||||||||||||||||||
|
| 7 | result = supplier.getNextShape(); | |||||||||||||||||||
7 | result = supplier.getNextStroke(); |
| | |||||||||||||||||||
8 | setSeriesStroke(series, result, false); |
| 8 | setSeriesShape(series, result, false); | ||||||||||||||||||
9 | if (result == null) |
| 9 | if (result == null) | ||||||||||||||||||
|
| 10 | result = this.baseShape; | |||||||||||||||||||
10 | result = this.baseStroke; |
| | |||||||||||||||||||
|
| 11 | return result; | |||||||||||||||||||
11 | return result; |
| |
Row | Violation |
---|---|
1 | Type java.awt.Stroke of variable this.stroke does not match with type java.awt.Shape of variable this.shape |
2 | Unmatched statement return this.shape; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
3 | Unmatched return this.shape; |
4 | Unmatched statement return this.stroke; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
5 | Unmatched return this.stroke; |
6 | Type java.awt.Stroke of variable result does not match with type java.awt.Shape of variable result |
7 | Unmatched statement result=supplier.getNextShape(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
8 | Unmatched statement result=supplier.getNextStroke(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
9 | Type java.awt.Stroke of variable result does not match with type java.awt.Shape of variable result |
10 | Expression setSeriesStroke(series,result,false) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
11 | Expression setSeriesShape(series,result,false) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
12 | Expression setSeriesStroke(series,result,false) is a void method call, and thus it cannot be parameterized |
13 | Expression setSeriesShape(series,result,false) is a void method call, and thus it cannot be parameterized |
14 | Type java.awt.Stroke of variable result does not match with type java.awt.Shape of variable result |
15 | Unmatched statement result=this.baseShape; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
16 | Unmatched statement result=this.baseStroke; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
17 | Unmatched return result; |
18 | Unmatched return result; |