File path: /jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/CategoryPointerAnnotationTests.java | File path: /jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYPointerAnnotationTests.java | |||
Method name: void testEquals()
|
Method name: void testEquals()
|
|||
Number of AST nodes: 48 | Number of AST nodes: 48 | |||
1 | CategoryPointerAnnotation a1 = new CategoryPointerAnnotation("Label",↵ | 1 | XYPointerAnnotation a1 = new XYPointerAnnotation("Label",↵ | |
2 | ↵ | 2 | 10.0, 20.0,↵ | |
3 | "Key 1", 20.0, Math.PI);↵ | 3 | Math.PI);↵ | |
4 | CategoryPointerAnnotation a2 = new CategoryPointerAnnotation("Label",↵ | 4 | XYPointerAnnotation a2 = new XYPointerAnnotation("Label",↵ | |
5 | ↵ | 5 | 10.0, 20.0,↵ | |
6 | "Key 1", 20.0, Math.PI);↵ | 6 | Math.PI);↵ | |
7 | assertTrue(a1.equals(a2));↵ | 7 | assertTrue(a1.equals(a2));↵ | |
8 | a1 = new CategoryPointerAnnotation("Label2", "Key 1", 20.0, Math.PI);↵ | 8 | a1 = new XYPointerAnnotation("Label2", 10.0, 20.0, Math.PI);↵ | |
9 | assertFalse(a1.equals(a2));↵ | 9 | assertFalse(a1.equals(a2));↵ | |
10 | a2 = new CategoryPointerAnnotation("Label2", "Key 1", 20.0, Math.PI);↵ | 10 | a2 = new XYPointerAnnotation("Label2", 10.0, 20.0, Math.PI);↵ | |
11 | assertTrue(a1.equals(a2));↵ | 11 | assertTrue(a1.equals(a2));↵ | |
12 | a1.setCategory("Key 2");↵ | 12 | a1.setX(11.0);↵ | |
13 | assertFalse(a1.equals(a2));↵ | 13 | assertFalse(a1.equals(a2));↵ | |
14 | a2.setCategory("Key 2");↵ | 14 | a2.setX(11.0);↵ | |
15 | assertTrue(a1.equals(a2));↵ | 15 | assertTrue(a1.equals(a2));↵ | |
16 | a1.setValue(22.0);↵ | 16 | a1.setY(22.0);↵ | |
17 | assertFalse(a1.equals(a2));↵ | 17 | assertFalse(a1.equals(a2));↵ | |
18 | a2.setValue(22.0);↵ | 18 | a2.setY(22.0);↵ | |
19 | assertTrue(a1.equals(a2));↵ | 19 | assertTrue(a1.equals(a2));↵ | |
20 | //private double angle;↵ | 20 | //private double angle;↵ | |
21 | a1.setAngle(Math.PI / 4.0);↵ | 21 | a1.setAngle(Math.PI / 4.0);↵ | |
22 | assertFalse(a1.equals(a2));↵ | 22 | assertFalse(a1.equals(a2));↵ | |
23 | a2.setAngle(Math.PI / 4.0);↵ | 23 | a2.setAngle(Math.PI / 4.0);↵ | |
24 | assertTrue(a1.equals(a2));↵ | 24 | assertTrue(a1.equals(a2));↵ | |
25 | //private double tipRadius;↵ | 25 | //private double tipRadius;↵ | |
26 | a1.setTipRadius(20.0);↵ | 26 | a1.setTipRadius(20.0);↵ | |
27 | assertFalse(a1.equals(a2));↵ | 27 | assertFalse(a1.equals(a2));↵ | |
28 | a2.setTipRadius(20.0);↵ | 28 | a2.setTipRadius(20.0);↵ | |
29 | assertTrue(a1.equals(a2));↵ | 29 | assertTrue(a1.equals(a2));↵ | |
30 | //private double baseRadius;↵ | 30 | //private double baseRadius;↵ | |
31 | a1.setBaseRadius(5.0);↵ | 31 | a1.setBaseRadius(5.0);↵ | |
32 | assertFalse(a1.equals(a2));↵ | 32 | assertFalse(a1.equals(a2));↵ | |
33 | a2.setBaseRadius(5.0);↵ | 33 | a2.setBaseRadius(5.0);↵ | |
34 | assertTrue(a1.equals(a2));↵ | 34 | assertTrue(a1.equals(a2));↵ | |
35 | //private double arrowLength;↵ | 35 | //private double arrowLength;↵ | |
36 | a1.setArrowLength(33.0);↵ | 36 | a1.setArrowLength(33.0);↵ | |
37 | assertFalse(a1.equals(a2));↵ | 37 | assertFalse(a1.equals(a2));↵ | |
38 | a2.setArrowLength(33.0);↵ | 38 | a2.setArrowLength(33.0);↵ | |
39 | assertTrue(a1.equals(a2));↵ | 39 | assertTrue(a1.equals(a2));↵ | |
40 | //private double arrowWidth;↵ | 40 | //private double arrowWidth;↵ | |
41 | a1.setArrowWidth(9.0);↵ | 41 | a1.setArrowWidth(9.0);↵ | |
42 | assertFalse(a1.equals(a2));↵ | 42 | assertFalse(a1.equals(a2));↵ | |
43 | a2.setArrowWidth(9.0);↵ | 43 | a2.setArrowWidth(9.0);↵ | |
44 | assertTrue(a1.equals(a2));↵ | 44 | assertTrue(a1.equals(a2));↵ | |
45 | //private Stroke arrowStroke;↵ | 45 | //private Stroke arrowStroke;↵ | |
46 | Stroke stroke = new BasicStroke(1.5f);↵ | 46 | Stroke stroke = new BasicStroke(1.5f);↵ | |
47 | a1.setArrowStroke(stroke);↵ | 47 | a1.setArrowStroke(stroke);↵ | |
48 | assertFalse(a1.equals(a2));↵ | 48 | assertFalse(a1.equals(a2));↵ | |
49 | a2.setArrowStroke(stroke);↵ | 49 | a2.setArrowStroke(stroke);↵ | |
50 | assertTrue(a1.equals(a2));↵ | 50 | assertTrue(a1.equals(a2));↵ | |
51 | //private Paint arrowPaint;↵ | 51 | //private Paint arrowPaint;↵ | |
52 | a1.setArrowPaint(Color.blue);↵ | 52 | a1.setArrowPaint(Color.blue);↵ | |
53 | assertFalse(a1.equals(a2));↵ | 53 | assertFalse(a1.equals(a2));↵ | |
54 | a2.setArrowPaint(Color.blue);↵ | 54 | a2.setArrowPaint(Color.blue);↵ | |
55 | assertTrue(a1.equals(a2));↵ | 55 | assertTrue(a1.equals(a2));↵ | |
56 | //private double labelOffset;↵ | 56 | //private double labelOffset;↵ | |
57 | a1.setLabelOffset(10.0);↵ | 57 | a1.setLabelOffset(10.0);↵ | |
58 | assertFalse(a1.equals(a2));↵ | 58 | assertFalse(a1.equals(a2));↵ | |
59 | a2.setLabelOffset(10.0);↵ | 59 | a2.setLabelOffset(10.0);↵ | |
60 | assertTrue(a1.equals(a2)); | 60 |
| |
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 having the same super class |
Number of node comparisons | 848 |
Number of mapped statements | 42 |
Number of unmapped statements in the first code fragment | 6 |
Number of unmapped statements in the second code fragment | 6 |
Time elapsed for statement mapping (ms) | 0.0 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| 1 | XYPointerAnnotation a1 = new XYPointerAnnotation("Label", 10.0, 20.0, Math.PI); | |||||||||||||||||||
1 | CategoryPointerAnnotation a1 = new CategoryPointerAnnotation("Label", "Key 1", 20.0, Math.PI); |
| | |||||||||||||||||||
|
| 2 | XYPointerAnnotation a2 = new XYPointerAnnotation("Label", 10.0, 20.0, Math.PI); | |||||||||||||||||||
2 | CategoryPointerAnnotation a2 = new CategoryPointerAnnotation("Label", "Key 1", 20.0, Math.PI); |
| | |||||||||||||||||||
3 | assertTrue(a1.equals(a2)); |
| 3 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
|
| 4 | a1 = new XYPointerAnnotation("Label2", 10.0, 20.0, Math.PI); | |||||||||||||||||||
4 | a1 = new CategoryPointerAnnotation("Label2", "Key 1", 20.0, Math.PI); |
| | |||||||||||||||||||
5 | assertFalse(a1.equals(a2)); |
| 5 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
|
| 6 | a2 = new XYPointerAnnotation("Label2", 10.0, 20.0, Math.PI); | |||||||||||||||||||
6 | a2 = new CategoryPointerAnnotation("Label2", "Key 1", 20.0, Math.PI); |
| | |||||||||||||||||||
7 | assertTrue(a1.equals(a2)); |
| 7 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
|
| 8 | a1.setX(11.0); | |||||||||||||||||||
8 | a1.setCategory("Key 2"); |
| | |||||||||||||||||||
9 | assertFalse(a1.equals(a2)); |
| 9 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
|
| 10 | a2.setX(11.0); | |||||||||||||||||||
10 | a2.setCategory("Key 2"); |
| | |||||||||||||||||||
11 | assertTrue(a1.equals(a2)); |
| 11 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
12 | a1.setValue(22.0); |
| 12 | a1.setY(22.0); | ||||||||||||||||||
13 | assertFalse(a1.equals(a2)); |
| 13 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
14 | a2.setValue(22.0); |
| 14 | a2.setY(22.0); | ||||||||||||||||||
15 | assertTrue(a1.equals(a2)); |
| 15 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
16 | a1.setAngle(Math.PI / 4.0); |
| 16 | a1.setAngle(Math.PI / 4.0); | ||||||||||||||||||
17 | assertFalse(a1.equals(a2)); |
| 17 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
18 | a2.setAngle(Math.PI / 4.0); |
| 18 | a2.setAngle(Math.PI / 4.0); | ||||||||||||||||||
19 | assertTrue(a1.equals(a2)); |
| 19 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
20 | a1.setTipRadius(20.0); |
| 20 | a1.setTipRadius(20.0); | ||||||||||||||||||
21 | assertFalse(a1.equals(a2)); |
| 21 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
22 | a2.setTipRadius(20.0); |
| 22 | a2.setTipRadius(20.0); | ||||||||||||||||||
23 | assertTrue(a1.equals(a2)); |
| 23 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
24 | a1.setBaseRadius(5.0); |
| 24 | a1.setBaseRadius(5.0); | ||||||||||||||||||
25 | assertFalse(a1.equals(a2)); |
| 25 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
26 | a2.setBaseRadius(5.0); |
| 26 | a2.setBaseRadius(5.0); | ||||||||||||||||||
27 | assertTrue(a1.equals(a2)); |
| 27 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
28 | a1.setArrowLength(33.0); |
| 28 | a1.setArrowLength(33.0); | ||||||||||||||||||
29 | assertFalse(a1.equals(a2)); |
| 29 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
30 | a2.setArrowLength(33.0); |
| 30 | a2.setArrowLength(33.0); | ||||||||||||||||||
31 | assertTrue(a1.equals(a2)); |
| 31 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
32 | a1.setArrowWidth(9.0); |
| 32 | a1.setArrowWidth(9.0); | ||||||||||||||||||
33 | assertFalse(a1.equals(a2)); |
| 33 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
34 | a2.setArrowWidth(9.0); |
| 34 | a2.setArrowWidth(9.0); | ||||||||||||||||||
35 | assertTrue(a1.equals(a2)); |
| 35 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
36 | Stroke stroke = new BasicStroke(1.5f); | 36 | Stroke stroke = new BasicStroke(1.5f); | |||||||||||||||||||
37 | a1.setArrowStroke(stroke); |
| 37 | a1.setArrowStroke(stroke); | ||||||||||||||||||
38 | assertFalse(a1.equals(a2)); |
| 38 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
39 | a2.setArrowStroke(stroke); |
| 39 | a2.setArrowStroke(stroke); | ||||||||||||||||||
40 | assertTrue(a1.equals(a2)); |
| 40 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
41 | a1.setArrowPaint(Color.blue); |
| 41 | a1.setArrowPaint(Color.blue); | ||||||||||||||||||
42 | assertFalse(a1.equals(a2)); |
| 42 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
43 | a2.setArrowPaint(Color.blue); |
| 43 | a2.setArrowPaint(Color.blue); | ||||||||||||||||||
44 | assertTrue(a1.equals(a2)); |
| 44 | assertTrue(a1.equals(a2)); | ||||||||||||||||||
45 | a1.setLabelOffset(10.0); |
| 45 | a1.setLabelOffset(10.0); | ||||||||||||||||||
46 | assertFalse(a1.equals(a2)); |
| 46 | assertFalse(a1.equals(a2)); | ||||||||||||||||||
47 | a2.setLabelOffset(10.0); |
| 47 | a2.setLabelOffset(10.0); | ||||||||||||||||||
48 | assertTrue(a1.equals(a2)); |
| 48 | assertTrue(a1.equals(a2)); |
Row | Violation |
---|---|
1 | Unmatched statement XYPointerAnnotation a1=new XYPointerAnnotation("Label",10.0,20.0,Math.PI); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
2 | Unmatched statement CategoryPointerAnnotation a1=new CategoryPointerAnnotation("Label","Key 1",20.0,Math.PI); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
3 | Unmatched statement XYPointerAnnotation a2=new XYPointerAnnotation("Label",10.0,20.0,Math.PI); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
4 | Unmatched statement CategoryPointerAnnotation a2=new CategoryPointerAnnotation("Label","Key 1",20.0,Math.PI); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
5 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
6 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
7 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
8 | Unmatched statement a1=new XYPointerAnnotation("Label2",10.0,20.0,Math.PI); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
9 | Unmatched statement a1=new CategoryPointerAnnotation("Label2","Key 1",20.0,Math.PI); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
10 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
11 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
12 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
13 | Unmatched statement a2=new XYPointerAnnotation("Label2",10.0,20.0,Math.PI); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
14 | Unmatched statement a2=new CategoryPointerAnnotation("Label2","Key 1",20.0,Math.PI); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
15 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
16 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
17 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
18 | Unmatched statement a1.setX(11.0); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
19 | Unmatched statement a1.setCategory("Key 2"); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
20 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
21 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
22 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
23 | Unmatched statement a2.setX(11.0); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
24 | Unmatched statement a2.setCategory("Key 2"); cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
25 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
26 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
27 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
28 | Expression a1.setValue(22.0) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
29 | Expression a1.setY(22.0) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
30 | Expression a1.setValue(22.0) is a void method call, and thus it cannot be parameterized |
31 | Expression a1.setY(22.0) is a void method call, and thus it cannot be parameterized |
32 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setValue(double) , public void setY(double) |
33 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
34 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
35 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
36 | Expression a2.setValue(22.0) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
37 | Expression a2.setY(22.0) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
38 | Expression a2.setValue(22.0) is a void method call, and thus it cannot be parameterized |
39 | Expression a2.setY(22.0) is a void method call, and thus it cannot be parameterized |
40 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setValue(double) , public void setY(double) |
41 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
42 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
43 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
44 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setAngle(double) |
45 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
46 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
47 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
48 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setAngle(double) |
49 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
50 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
51 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
52 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setTipRadius(double) |
53 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
54 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
55 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
56 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setTipRadius(double) |
57 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
58 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
59 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
60 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setBaseRadius(double) |
61 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
62 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
63 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
64 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setBaseRadius(double) |
65 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
66 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
67 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
68 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setArrowLength(double) |
69 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
70 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
71 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
72 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setArrowLength(double) |
73 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
74 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
75 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
76 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setArrowWidth(double) |
77 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
78 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
79 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
80 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setArrowWidth(double) |
81 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
82 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
83 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
84 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setArrowStroke(java.awt.Stroke) |
85 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
86 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
87 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
88 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setArrowStroke(java.awt.Stroke) |
89 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
90 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
91 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
92 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setArrowPaint(java.awt.Paint) |
93 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
94 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
95 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
96 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setArrowPaint(java.awt.Paint) |
97 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
98 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
99 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
100 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setLabelOffset(double) |
101 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
102 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
103 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
104 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public void setLabelOffset(double) |
105 | Expression a2 cannot be unified with expression a2 , because common superclass type org.jfree.util.PublicCloneable cannot be passed as an argument to public boolean equals(java.lang.Object) |
106 | Expression a2 cannot be unified with expression a2 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |
107 | Expression a1 cannot be unified with expression a1 , because common superclass org.jfree.util.PublicCloneable does not declare member(s) public boolean equals(java.lang.Object) |