File path: /jfreechart-1.0.10/src/org/jfree/chart/title/LegendGraphic.java | File path: /jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java | |||
Method name: Object clone()
|
Method name: Object clone()
|
|||
Number of AST nodes: 4 | Number of AST nodes: 4 | |||
1 | LegendGraphic clone = (LegendGraphic) super.clone();↵ | |||
2 | clone.shape = ShapeUtilities.clone(this.shape↵ | 1 | TimeTableXYDataset clone = (TimeTableXYDataset) super.clone();↵ | |
3 | );↵ | 2 | clone.values = (DefaultKeyedValues2D) this.values.clone();↵ | |
4 | clone.line = ShapeUtilities.clone(this.line);↵ | 3 | clone.workingCalendar = (Calendar) this.workingCalendar.clone();↵ | |
5 | return clone; | 4 |
| |
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 | LegendGraphic clone = (LegendGraphic)super.clone(); |
| 1 | TimeTableXYDataset clone = (TimeTableXYDataset)super.clone(); | ||||||||||||||||||
|
| 2 | clone.values = (DefaultKeyedValues2D)this.values.clone(); | |||||||||||||||||||
2 | clone.shape = ShapeUtilities.clone(this.shape); |
| | |||||||||||||||||||
|
| 3 | clone.workingCalendar = (Calendar)this.workingCalendar.clone(); | |||||||||||||||||||
3 | clone.line = ShapeUtilities.clone(this.line); |
| | |||||||||||||||||||
4 | return clone; |
| 4 | return clone; |
Row | Violation |
---|---|
1 | Super method call LegendGraphic clone=(LegendGraphic)super.clone(); cannot be extracted from method |
2 | Super method call TimeTableXYDataset clone=(TimeTableXYDataset)super.clone(); cannot be extracted from method |
3 | Unmatched statement clone.values=(DefaultKeyedValues2D)this.values.clone(); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
4 | 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 |
5 | Unmatched statement clone.workingCalendar=(Calendar)this.workingCalendar.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.line=ShapeUtilities.clone(this.line); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |