File path: /jfreechart-1.0.10/src/org/jfree/chart/annotations/XYImageAnnotation.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/renderer/category/BoxAndWhiskerRenderer.java | |||
Method name: boolean equals(Object)
|
Method name: boolean equals(Object)
|
|||
Number of AST nodes: 16 | Number of AST nodes: 16 | |||
1 | if (obj == this) {↵ | 1 | if (obj == this) {↵ | |
2 | return true;↵ | 2 | return true;↵ | |
3 | }↵ | 3 | }↵ | |
4 | // now try to reject equality...↵ | 4 | ↵ | |
5 | if (!super.equals(obj)) {↵ | 5 | if (!(obj instanceof BoxAndWhiskerRenderer)) {↵ | |
6 | return false;↵ | 6 | return false;↵ | |
7 | }↵ | 7 | }↵ | |
8 | if (!(obj instanceof XYImageAnnotation)) {↵ | 8 | if (!super.equals(obj)) {↵ | |
9 | return false;↵ | 9 | return false;↵ | |
10 | }↵ | 10 | }↵ | |
11 | XYImageAnnotation that = (XYImageAnnotation) obj;↵ | 11 | ↵ | |
12 | if (this.x != that.x↵ | 12 | BoxAndWhiskerRenderer that = (BoxAndWhiskerRenderer) obj;↵ | |
13 | ) {↵ | 13 | if (!PaintUtilities.equal(this.artifactPaint, that.artifactPaint)) {↵ | |
14 | return false;↵ | 14 | return false;↵ | |
15 | }↵ | 15 | }↵ | |
16 | if (this.y != that.y) {↵ | 16 | if (this.fillBox != that.fillBox) {↵ | |
17 | return false;↵ | 17 | return false;↵ | |
18 | }↵ | 18 | }↵ | |
19 | if (!ObjectUtilities.equal(this.image, that.image)) {↵ | 19 | if (this.itemMargin != that.itemMargin) {↵ | |
20 | return false;↵ | 20 | return false;↵ | |
21 | }↵ | 21 | }↵ | |
22 | if (!this.anchor.equals(that.anchor)) {↵ | 22 | if (this.maximumBarWidth != that.maximumBarWidth) {↵ | |
23 | return false;↵ | 23 | return false;↵ | |
24 | }↵ | 24 | }↵ | |
25 | // seems to be the same...↵ | |||
26 | return true; | 25 |
| |
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) | 4.0 |
Clones location | Clones are in different classes |
Number of node comparisons | 80 |
Number of mapped statements | 13 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 5.6 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (obj == this) | 1 | if (obj == this) | |||||||||||||||||||||||||||||||
2 | return true; | 2 | return true; | |||||||||||||||||||||||||||||||
3 | if (!super.equals(obj)) |
| 5 | if (!super.equals(obj)) | ||||||||||||||||||||||||||||||
4 | return false; | 6 | return false; | |||||||||||||||||||||||||||||||
5 | if (!(obj instanceof XYImageAnnotation)) |
| 3 | if (!(obj instanceof BoxAndWhiskerRenderer)) | ||||||||||||||||||||||||||||||
6 | return false; | 4 | return false; | |||||||||||||||||||||||||||||||
7 | XYImageAnnotation that = (XYImageAnnotation)obj; |
| 7 | BoxAndWhiskerRenderer that = (BoxAndWhiskerRenderer)obj; | ||||||||||||||||||||||||||||||
8 | if (this.x != that.x) |
| 12 | if (this.itemMargin != that.itemMargin) | ||||||||||||||||||||||||||||||
9 | return false; | 13 | return false; | |||||||||||||||||||||||||||||||
10 | if (this.y != that.y) |
| 10 | if (this.fillBox != that.fillBox) | ||||||||||||||||||||||||||||||
11 | return false; | 11 | return false; | |||||||||||||||||||||||||||||||
12 | if (!ObjectUtilities.equal(this.image, that.image)) |
| 8 | if (!PaintUtilities.equal(this.artifactPaint, that.artifactPaint)) | ||||||||||||||||||||||||||||||
13 | return false; | 9 | return false; |
Row | Violation |
---|---|
1 | Super method call if(!super.equals(obj)) cannot be extracted from method |
2 | Super method call if(!super.equals(obj)) cannot be extracted from method |
3 | Expression that.x cannot be parameterized, because it has dependencies to/from statements that will be extracted |
4 | Expression that.itemMargin cannot be parameterized, because it has dependencies to/from statements that will be extracted |
5 | Type double of variable this.y does not match with type boolean of variable this.fillBox |
6 | Expression that.y cannot be parameterized, because it has dependencies to/from statements that will be extracted |
7 | Expression that.fillBox cannot be parameterized, because it has dependencies to/from statements that will be extracted |
8 | Type double of variable that.y does not match with type boolean of variable that.fillBox |
9 | Type java.awt.Image of variable this.image does not match with type java.awt.Paint of variable this.artifactPaint |
10 | Expression that.image cannot be parameterized, because it has dependencies to/from statements that will be extracted |
11 | Expression that.artifactPaint cannot be parameterized, because it has dependencies to/from statements that will be extracted |
12 | Type java.awt.Image of variable that.image does not match with type java.awt.Paint of variable that.artifactPaint |
13 | Type org.jfree.util.ObjectUtilities does not match with type org.jfree.util.PaintUtilities |
14 | Clone fragment #1 returns variable that with type org.jfree.chart.annotations.XYImageAnnotation , while Clone fragment #2 returns variable that with type org.jfree.chart.renderer.category.BoxAndWhiskerRenderer |
15 | Not all possible execution flows end in a return statement |
16 | The refactoring of the clones is infeasible, because classes org.jfree.chart.annotations.XYImageAnnotation and org.jfree.chart.renderer.category.BoxAndWhiskerRenderer do not have a common superclass |