File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/SpiderWebPlot.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/SpiderWebPlot.java | |||
Method name: Paint getSeriesOutlinePaint(int)
|
Method name: Stroke getSeriesOutlineStroke(int)
|
|||
Number of AST nodes: 6 | Number of AST nodes: 6 | |||
1 | if (this.seriesOutlinePaint != null) {↵ | 1 | if (this.seriesOutlineStroke != null) {↵ | |
2 | return this.seriesOutlinePaint;↵ | 2 | return this.seriesOutlineStroke;↵ | |
3 | }↵ | 3 | }↵ | |
4 | // otherwise look up the paint list↵ | 4 | // otherwise look up the paint list↵ | |
5 | Paint result = this.seriesOutlinePaintList.getPaint(series);↵ | 5 | Stroke result = this.seriesOutlineStrokeList.getStroke(series);↵ | |
6 | if (result == null) {↵ | 6 | if (result == null) {↵ | |
7 | result = this.baseSeriesOutlinePaint;↵ | 7 | result = this.baseSeriesOutlineStroke;↵ | |
8 | }↵ | 8 | }↵ | |
9 | return result; | 9 |
| |
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.4 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 14 |
Number of mapped statements | 2 |
Number of unmapped statements in the first code fragment | 4 |
Number of unmapped statements in the second code fragment | 4 |
Time elapsed for statement mapping (ms) | 17.4 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (this.seriesOutlinePaint != null) |
| 1 | if (this.seriesOutlineStroke != null) | ||||||||||||||
|
| 2 | return this.seriesOutlineStroke; | |||||||||||||||
2 | return this.seriesOutlinePaint; |
| | |||||||||||||||
| 3 | Stroke result = this.seriesOutlineStrokeList.getStroke(series); | ||||||||||||||||
3 | Paint result = this.seriesOutlinePaintList.getPaint(series); | | ||||||||||||||||
4 | if (result == null) |
| 4 | if (result == null) | ||||||||||||||
|
| 5 | result = this.baseSeriesOutlineStroke; | |||||||||||||||
5 | result = this.baseSeriesOutlinePaint; |
| | |||||||||||||||
|
| 6 | return result; | |||||||||||||||
6 | return result; |
| |
Row | Violation |
---|---|
1 | Type java.awt.Paint of variable this.seriesOutlinePaint does not match with type java.awt.Stroke of variable this.seriesOutlineStroke |
2 | Unmatched statement return this.seriesOutlineStroke; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
3 | Unmatched return this.seriesOutlineStroke; |
4 | Unmatched statement return this.seriesOutlinePaint; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
5 | Unmatched return this.seriesOutlinePaint; |
6 | Type java.awt.Paint of variable result does not match with type java.awt.Stroke of variable result |
7 | Unmatched statement result=this.baseSeriesOutlineStroke; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
8 | Unmatched statement result=this.baseSeriesOutlinePaint; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
9 | Unmatched return result; |
10 | Unmatched return result; |
11 | The refactoring of the clones is infeasible, because the number of macthed statements is equal to zero |