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: Stroke lookupSeriesOutlineStroke(int)
|
|||
Number of AST nodes: 11 | Number of AST nodes: 11 | |||
1 | if (this.stroke != null) {↵ | 1 | if (this.outlineStroke != null) {↵ | |
2 | return this.stroke;↵ | 2 | return this.outlineStroke;↵ | |
3 | }↵ | 3 | }↵ | |
4 | // otherwise look up the paint table↵ | 4 | // otherwise look up the stroke table↵ | |
5 | Stroke result = getSeriesStroke(series);↵ | 5 | Stroke result = getSeriesOutlineStroke(series);↵ | |
6 | if (result == null && this.autoPopulateSeriesStroke) {↵ | 6 | if (result == null && this.autoPopulateSeriesOutlineStroke) {↵ | |
7 | DrawingSupplier supplier = getDrawingSupplier();↵ | 7 | DrawingSupplier supplier = getDrawingSupplier();↵ | |
8 | if (supplier != null) {↵ | 8 | if (supplier != null) {↵ | |
9 | result = supplier.getNextStroke();↵ | 9 | result = supplier.getNextOutlineStroke();↵ | |
10 | setSeriesStroke(series, result, false);↵ | 10 | setSeriesOutlineStroke(series, result, false);↵ | |
11 | }↵ | 11 | }↵ | |
12 | }↵ | 12 | }↵ | |
13 | if (result == null) {↵ | 13 | if (result == null) {↵ | |
14 | result = this.baseStroke;↵ | 14 | result = this.baseOutlineStroke;↵ | |
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 | 1 |
Number of non-refactorable cases | 0 |
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 | 11 |
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) | 12.8 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (this.stroke != null) |
| 1 | if (this.outlineStroke != null) | ||||||||||||||
2 | return this.stroke; |
| 2 | return this.outlineStroke; | ||||||||||||||
3 | Stroke result = getSeriesStroke(series); |
| 3 | Stroke result = getSeriesOutlineStroke(series); | ||||||||||||||
4 | if (result == null && this.autoPopulateSeriesStroke) |
| 4 | if (result == null && this.autoPopulateSeriesOutlineStroke) | ||||||||||||||
5 | DrawingSupplier supplier = getDrawingSupplier(); | 5 | DrawingSupplier supplier = getDrawingSupplier(); | |||||||||||||||
6 | if (supplier != null) | 6 | if (supplier != null) | |||||||||||||||
7 | result = supplier.getNextStroke(); |
| 7 | result = supplier.getNextOutlineStroke(); | ||||||||||||||
8 | setSeriesStroke(series, result, false); |
| 8 | setSeriesOutlineStroke(series, result, false); | ||||||||||||||
9 | if (result == null) | 9 | if (result == null) | |||||||||||||||
10 | result = this.baseStroke; |
| 10 | result = this.baseOutlineStroke; | ||||||||||||||
11 | return result; | 11 | return result; |
Row | Violation |
---|---|
1 | Expression supplier.getNextStroke() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression supplier.getNextOutlineStroke() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression setSeriesStroke(series,result,false) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
4 | Expression setSeriesOutlineStroke(series,result,false) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
5 | Expression setSeriesStroke(series,result,false) is a void method call, and thus it cannot be parameterized |
6 | Expression setSeriesOutlineStroke(series,result,false) is a void method call, and thus it cannot be parameterized |