CloneSet615


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14220.952statement_sequence[10]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
114170
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainCategoryPlot.java
215167
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeCategoryPlot.java
Next
Last
Clone Instance
1
Line Count
14
Source Line
170
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainCategoryPlot.java

if (subplot == null) {
  throw new IllegalArgumentException("Null \'subplot\' argument.");
}
if (weight < 1) {
  throw new IllegalArgumentException("Require weight >= 1.");
}
subplot.setParent(this );
subplot.setWeight(weight);
subplot.setInsets(new RectangleInsets(0.0, 0.0, 0.0, 0.0));
subplot.setDomainAxis(null);
subplot.setOrientation(getOrientation());
subplot.addChangeListener(this );
this.subplots.add(subplot);
this.totalWeight += weight;


First
Previous
Clone Instance
2
Line Count
15
Source Line
167
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedRangeCategoryPlot.java

if (subplot == null) {
  throw new IllegalArgumentException("Null \'subplot\' argument.");
}
if (weight <= 0) {
  throw new IllegalArgumentException("Require weight >= 1.");
}
// store the plot and its weight
subplot.setParent(this );
subplot.setWeight(weight);
subplot.setInsets(new RectangleInsets(0.0, 0.0, 0.0, 0.0));
subplot.setRangeAxis(null);
subplot.setOrientation(getOrientation());
subplot.addChangeListener(this );
this.subplots.add(subplot);
this.totalWeight += weight;


Clone AbstractionParameter Count: 2Parameter Bindings

if (subplot == null) {
  throw new IllegalArgumentException("Null \'subplot\' argument.");
}
if ( [[#variable18cc2220]]) {
  throw new IllegalArgumentException("Require weight >= 1.");
}
// store the plot and its weight
subplot.setParent(this );
subplot.setWeight(weight);
subplot.setInsets(new RectangleInsets(0.0, 0.0, 0.0, 0.0));
subplot. [[#variable18cc43e0]](null);
subplot.setOrientation(getOrientation());
subplot.addChangeListener(this );
this.subplots.add(subplot);
this.totalWeight += weight;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18cc2220]]
weight < 1 
12[[#18cc2220]]
weight <= 0 
21[[#18cc43e0]]
setDomainAxis 
22[[#18cc43e0]]
setRangeAxis