CloneSet82


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
91110.989statement_sequence[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19139
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/CategoryTextAnnotationTests.java
29187
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYDrawableAnnotationTests.java
39157
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYLineAnnotationTests.java
49185
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYPointerAnnotationTests.java
59166
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYTextAnnotationTests.java
6987
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/AxisTests.java
7985
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/CategoryAxis3DTests.java
89176
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/CategoryAxisTests.java
99197
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/CategoryAxisTests.java
10992
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/CyclicNumberAxisTests.java
119130
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/SubCategoryAxisTests.java
Next
Last
Clone Instance
1
Line Count
9
Source Line
139
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/CategoryTextAnnotationTests.java

try {
  a2 = (CategoryTextAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
2
Line Count
9
Source Line
187
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYDrawableAnnotationTests.java

try {
  a2 = (XYDrawableAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
3
Line Count
9
Source Line
157
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYLineAnnotationTests.java

try {
  a2 = (XYLineAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
4
Line Count
9
Source Line
185
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYPointerAnnotationTests.java

try {
  a2 = (XYPointerAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
5
Line Count
9
Source Line
166
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYTextAnnotationTests.java

try {
  a2 = (XYTextAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
6
Line Count
9
Source Line
87
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/AxisTests.java

try {
  a2 = (CategoryAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
7
Line Count
9
Source Line
85
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/CategoryAxis3DTests.java

try {
  a2 = (CategoryAxis3D) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
8
Line Count
9
Source Line
176
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/CategoryAxisTests.java

try {
  a2 = (CategoryAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
9
Line Count
9
Source Line
197
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/CategoryAxisTests.java

try {
  a2 = (CategoryAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Next
Previous
Clone Instance
10
Line Count
9
Source Line
92
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/CyclicNumberAxisTests.java

try {
  a2 = (CyclicNumberAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


First
Previous
Clone Instance
11
Line Count
9
Source Line
130
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/SubCategoryAxisTests.java

try {
  a2 = (SubCategoryAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Clone AbstractionParameter Count: 1Parameter Bindings

try {
  a2 = ( [[#variable18ba9aa0]]) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  System.err.println("Failed to clone.");
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ba9aa0]]
CategoryTextAnnotation 
12[[#18ba9aa0]]
XYDrawableAnnotation 
13[[#18ba9aa0]]
XYLineAnnotation 
14[[#18ba9aa0]]
XYPointerAnnotation 
15[[#18ba9aa0]]
XYTextAnnotation 
16[[#18ba9aa0]]
CategoryAxis 
17[[#18ba9aa0]]
CategoryAxis3D 
18[[#18ba9aa0]]
CategoryAxis 
19[[#18ba9aa0]]
CategoryAxis 
110[[#18ba9aa0]]
CyclicNumberAxis 
111[[#18ba9aa0]]
SubCategoryAxis