CloneSet410


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4520.956method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14427
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultCategoryDataset.java
24366
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/DefaultPieDataset.java
35909
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
45397
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultMultiValueCategoryDataset.java
55720
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
4
Source Line
427
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultCategoryDataset.java

/**
 * Returns a clone of the dataset.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException if there is a problem cloning the
 *         dataset.
 */
public Object clone() throws CloneNotSupportedException {
  DefaultCategoryDataset clone = (DefaultCategoryDataset) super.clone();
  clone.data = (DefaultKeyedValues2D) this.data.clone();
  return clone;
}


Next
Previous
Clone Instance
2
Line Count
4
Source Line
366
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/DefaultPieDataset.java

/**
 * Returns a clone of the dataset.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException This class will not throw this 
 *         exception, but subclasses (if any) might.
 */
public Object clone() throws CloneNotSupportedException {
  DefaultPieDataset clone = (DefaultPieDataset) super.clone();
  clone.data = (DefaultKeyedValues) this.data.clone();
  return clone;
}


Next
Previous
Clone Instance
3
Line Count
5
Source Line
909
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns a clone of this dataset.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if cloning is not possible.
 */
public Object clone() throws CloneNotSupportedException {
  DefaultBoxAndWhiskerCategoryDataset clone = (DefaultBoxAndWhiskerCategoryDataset) super.clone();
  clone.data = (KeyedObjects2D) this.data.clone();
  return clone;
}


Next
Previous
Clone Instance
4
Line Count
5
Source Line
397
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultMultiValueCategoryDataset.java

/**
 * Returns a clone of this instance.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if the dataset cannot be cloned.
 */
public Object clone() throws CloneNotSupportedException {
  DefaultMultiValueCategoryDataset clone = (DefaultMultiValueCategoryDataset) super.clone();
  clone.data = (KeyedObjects2D) this.data.clone();
  return clone;
}


First
Previous
Clone Instance
5
Line Count
5
Source Line
720
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java

/**
 * Returns a clone of this dataset.
 * 
 * @return A clone of this dataset.
 * 
 * @throws CloneNotSupportedException if cloning cannot be completed.
 */
public Object clone() throws CloneNotSupportedException {
  DefaultStatisticalCategoryDataset clone = (DefaultStatisticalCategoryDataset) super.clone();
  clone.data = (KeyedObjects2D) this.data.clone();
  return clone;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns a clone of the dataset.
     *
     * @return A clone.
     *
     * @throws CloneNotSupportedException if there is a problem cloning the
     *         dataset.
     */
/**
     * Returns a clone of the dataset.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException This class will not throw this 
     *         exception, but subclasses (if any) might.
     */
/**
     * Returns a clone of this dataset.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException if cloning is not possible.
     */
/**
     * Returns a clone of this instance.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException if the dataset cannot be cloned.
     */
/**
     * Returns a clone of this dataset.
     * 
     * @return A clone of this dataset.
     * 
     * @throws CloneNotSupportedException if cloning cannot be completed.
     */
public Object clone() throws CloneNotSupportedException {
   [[#variable1a993520]] clone = ( [[#variable1a993520]]) super.clone();
  clone.data = ( [[#variable1a9934a0]]) this.data.clone();
  return clone;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a993520]]
DefaultCategoryDataset 
12[[#1a993520]]
DefaultPieDataset 
13[[#1a993520]]
DefaultBoxAndWhiskerCategoryDataset 
14[[#1a993520]]
DefaultMultiValueCategoryDataset 
15[[#1a993520]]
DefaultStatisticalCategoryDataset 
21[[#1a9934a0]]
DefaultKeyedValues2D 
22[[#1a9934a0]]
DefaultKeyedValues 
23[[#1a9934a0]]
KeyedObjects2D 
24[[#1a9934a0]]
KeyedObjects2D 
25[[#1a9934a0]]
KeyedObjects2D