CloneSet1293


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4210.969method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14574
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer.java
24457
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer2.java
Next
Last
Clone Instance
1
Line Count
4
Source Line
574
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer.java

/**
 * Returns a clone of the renderer.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException  if the renderer cannot be cloned.
 */
public Object clone() throws CloneNotSupportedException {
  XYAreaRenderer clone = (XYAreaRenderer) super.clone();
  clone.legendArea = ShapeUtilities.clone(this.legendArea);
  return clone;
}


First
Previous
Clone Instance
2
Line Count
4
Source Line
457
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer2.java

/**
 * Returns a clone of the renderer.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException  if the renderer cannot be cloned.
 */
public Object clone() throws CloneNotSupportedException {
  XYAreaRenderer2 clone = (XYAreaRenderer2) super.clone();
  clone.legendArea = ShapeUtilities.clone(this.legendArea);
  return clone;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns a clone of the renderer.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException  if the renderer cannot be cloned.
     */
public Object clone() throws CloneNotSupportedException {
   [[#variable18f17ee0]] clone = ( [[#variable18f17ee0]]) super.clone();
  clone.legendArea = ShapeUtilities.clone(this.legendArea);
  return clone;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f17ee0]]
XYAreaRenderer 
12[[#18f17ee0]]
XYAreaRenderer2