File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java | File path: /jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.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 | XYSeriesCollection clone = (XYSeriesCollection) super.clone();↵ | |
4 | );↵ | 2 | clone.data = (List) ObjectUtilities.deepClone(this.data);↵ | |
5 | clone.legendLine = ShapeUtilities.clone(this.legendLi↵ | 3 | clone.intervalDelegate↵ | |
6 | ne);↵ | 4 | = (IntervalXYDelegate) this.intervalDelegate.clone();↵ | |
7 | return clone; | 5 |
| |
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.0 |
Clones location | Clones are in different classes |
Number of node comparisons | 14 |
Number of mapped statements | 2 |
Number of unmapped statements in the first code fragment | 2 |
Number of unmapped statements in the second code fragment | 2 |
Time elapsed for statement mapping (ms) | 0.0 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | StandardXYItemRenderer clone = (StandardXYItemRenderer)super.clone(); |
| 1 | XYSeriesCollection clone = (XYSeriesCollection)super.clone(); | ||||||||||||||||||
|
| 2 | clone.data = (List)ObjectUtilities.deepClone(this.data); | |||||||||||||||||||
2 | clone.seriesShapesFilled = (BooleanList)this.seriesShapesFilled.clone(); |
| | |||||||||||||||||||
|
| 3 | clone.intervalDelegate = (IntervalXYDelegate)this.intervalDelegate.clone(); | |||||||||||||||||||
3 | clone.legendLine = ShapeUtilities.clone(this.legendLine); |
| | |||||||||||||||||||
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 XYSeriesCollection clone=(XYSeriesCollection)super.clone(); cannot be extracted from method |
3 | Unmatched statement clone.data=(List)ObjectUtilities.deepClone(this.data); 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 | Unmatched statement clone.intervalDelegate=(IntervalXYDelegate)this.intervalDelegate.clone(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
6 | Unmatched statement clone.legendLine=ShapeUtilities.clone(this.legendLine); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |