File path: /jfreechart-1.0.10/src/org/jfree/chart/axis/CategoryAxis.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/axis/CategoryAxis.java | |||
Method name: Font getTickLabelFont(Comparable)
|
Method name: Paint getTickLabelPaint(Comparable)
|
|||
Number of AST nodes: 6 | Number of AST nodes: 6 | |||
1 | if (category == null) {↵ | 1 | if (category == null) {↵ | |
2 | throw new IllegalArgumentException("Null 'category' argument.");↵ | 2 | throw new IllegalArgumentException("Null 'category' argument.");↵ | |
3 | }↵ | 3 | }↵ | |
4 | Font result = (Font) this.tickLabelFontMap.get(category);↵ | 4 | Paint result = (Paint) this.tickLabelPaintMap.get(category);↵ | |
5 | // if there is no specific font, use the general one...↵ | 5 | // if there is no specific paint, use the general one...↵ | |
6 | if (result == null) {↵ | 6 | if (result == null) {↵ | |
7 | result = getTickLabelFont();↵ | 7 | result = getTickLabelPaint();↵ | |
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.3 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 17 |
Number of mapped statements | 3 |
Number of unmapped statements in the first code fragment | 3 |
Number of unmapped statements in the second code fragment | 3 |
Time elapsed for statement mapping (ms) | 1.2 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (category == null) | 1 | if (category == null) | ||||||||||||
2 | throw new IllegalArgumentException("Null 'category' argument."); | 2 | throw new IllegalArgumentException("Null 'category' argument."); | ||||||||||||
|
| 3 | Paint result = (Paint)this.tickLabelPaintMap.get(category); | ||||||||||||
3 | Font result = (Font)this.tickLabelFontMap.get(category); |
| | ||||||||||||
4 | if (result == null) |
| 4 | if (result == null) | |||||||||||
|
| 5 | result = getTickLabelPaint(); | ||||||||||||
5 | result = getTickLabelFont(); |
| | ||||||||||||
|
| 6 | return result; | ||||||||||||
6 | return result; |
| |
Row | Violation |
---|---|
1 | Unmatched statement Paint result=(Paint)this.tickLabelPaintMap.get(category); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
2 | Unmatched statement Font result=(Font)this.tickLabelFontMap.get(category); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
3 | Type java.awt.Font of variable result does not match with type java.awt.Paint of variable result |
4 | Unmatched statement result=getTickLabelPaint(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
5 | Unmatched statement result=getTickLabelFont(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
6 | Unmatched return result; |
7 | Unmatched return result; |