File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/title/LegendGraphic.java | |||
Method name: Object clone()
|
Method name: Object clone()
|
|||
Number of AST nodes: 4 | Number of AST nodes: 4 | |||
1 | StandardXYItemRenderer clone = (StandardXYItemRenderer) super.clone();↵ | |||
2 | clone.seriesShapesFilled↵ | |||
3 | = (BooleanList) this.seriesShapesFilled.clone(↵ | 1 | LegendGraphic clone = (LegendGraphic) super.clone();↵ | |
4 | );↵ | 2 | clone.shape = ShapeUtilities.clone(this.shape);↵ | |
5 | clone.legendLine = ShapeUtilities.clone(this.legendLine);↵ | 3 | clone.line = ShapeUtilities.clone(this.line);↵ | |
6 | return clone; | 4 |
| |
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.0 |
Clones location | Clones are in different classes |
Number of node comparisons | 12 |
Number of mapped statements | 3 |
Number of unmapped statements in the first code fragment | 1 |
Number of unmapped statements in the second code fragment | 1 |
Time elapsed for statement mapping (ms) | 0.0 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | StandardXYItemRenderer clone = (StandardXYItemRenderer)super.clone(); |
| 1 | LegendGraphic clone = (LegendGraphic)super.clone(); | ||||||||||||||||||||
|
| 2 | clone.shape = ShapeUtilities.clone(this.shape); | |||||||||||||||||||||
2 | clone.seriesShapesFilled = (BooleanList)this.seriesShapesFilled.clone(); |
| | |||||||||||||||||||||
3 | clone.legendLine = ShapeUtilities.clone(this.legendLine); |
| 3 | clone.line = ShapeUtilities.clone(this.line); | ||||||||||||||||||||
4 | return clone; |
| 4 | return clone; |
Row | Violation |
---|---|
1 | Super method call StandardXYItemRenderer clone=(StandardXYItemRenderer)super.clone(); cannot be extracted from method |
2 | Super method call LegendGraphic clone=(LegendGraphic)super.clone(); cannot be extracted from method |
3 | Unmatched statement clone.shape=ShapeUtilities.clone(this.shape); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
4 | Unmatched statement clone.seriesShapesFilled=(BooleanList)this.seriesShapesFilled.clone(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
5 | Expression clone.legendLine cannot be parameterized, because it has dependencies to/from statements that will be extracted |
6 | Expression clone.line cannot be parameterized, because it has dependencies to/from statements that will be extracted |
7 | Expression clone.legendLine is a field being modified, and thus it cannot be parameterized |
8 | Expression clone.line is a field being modified, and thus it cannot be parameterized |