CloneSet48


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
91710.988statement_sequence[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19133
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/experimental/org/jfree/experimental/chart/annotations/junit/XYTitleAnnotationTests.java
29158
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/CategoryLineAnnotationTests.java
39182
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/CategoryPointerAnnotationTests.java
49166
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYBoxAnnotationTests.java
59115
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYImageAnnotationTests.java
69158
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYPolygonAnnotationTests.java
79174
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/annotations/junit/XYShapeAnnotationTests.java
89188
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/DateAxisTests.java
99125
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/ExtendedCategoryAxisTests.java
109153
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/ExtendedCategoryAxisTests.java
11996
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/LogAxisTests.java
12986
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/ModuloAxisTests.java
139106
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/NumberAxisTests.java
149194
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/PeriodAxisTests.java
159114
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/SymbolAxisTests.java
16993
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/axis/junit/ValueAxisTests.java
179147
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/plot/dial/junit/DialTextAnnotationTests.java
Next
Last
Clone Instance
1
Line Count
9
Source Line
133
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/experimental/org/jfree/experimental/chart/annotations/junit/XYTitleAnnotationTests.java

try {
  a2 = (XYTitleAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (CategoryLineAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (CategoryPointerAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (XYBoxAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (XYImageAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (XYPolygonAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (XYShapeAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (DateAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (ExtendedCategoryAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (ExtendedCategoryAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (LogAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (ModuloAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (NumberAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (PeriodAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (SymbolAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


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

try {
  a2 = (NumberAxis) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


First
Previous
Clone Instance
17
Line Count
9
Source Line
147
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/tests/org/jfree/chart/plot/dial/junit/DialTextAnnotationTests.java

try {
  a2 = (DialTextAnnotation) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));


Clone AbstractionParameter Count: 1Parameter Bindings

try {
  a2 = ( [[#variable1509ab40]]) a1.clone();
}
catch (CloneNotSupportedException
       e) {
  e.printStackTrace();
}
assertTrue(a1 != a2);
assertTrue(a1.getClass() == a2.getClass());
assertTrue(a1.equals(a2));
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1509ab40]]
XYTitleAnnotation 
12[[#1509ab40]]
CategoryLineAnnotation 
13[[#1509ab40]]
CategoryPointerAnnotation 
14[[#1509ab40]]
XYBoxAnnotation 
15[[#1509ab40]]
XYImageAnnotation 
16[[#1509ab40]]
XYPolygonAnnotation 
17[[#1509ab40]]
XYShapeAnnotation 
18[[#1509ab40]]
DateAxis 
19[[#1509ab40]]
ExtendedCategoryAxis 
110[[#1509ab40]]
ExtendedCategoryAxis 
111[[#1509ab40]]
LogAxis 
112[[#1509ab40]]
ModuloAxis 
113[[#1509ab40]]
NumberAxis 
114[[#1509ab40]]
PeriodAxis 
115[[#1509ab40]]
SymbolAxis 
116[[#1509ab40]]
NumberAxis 
117[[#1509ab40]]
DialTextAnnotation