Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 5 | 2 | 0.956 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 427 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultCategoryDataset.java |
2 | 4 | 366 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/DefaultPieDataset.java |
3 | 5 | 909 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java |
4 | 5 | 397 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultMultiValueCategoryDataset.java |
5 | 5 | 720 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.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; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||||
/** * 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; } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a993520]] | DefaultCategoryDataset |
1 | 2 | [[#1a993520]] | DefaultPieDataset |
1 | 3 | [[#1a993520]] | DefaultBoxAndWhiskerCategoryDataset |
1 | 4 | [[#1a993520]] | DefaultMultiValueCategoryDataset |
1 | 5 | [[#1a993520]] | DefaultStatisticalCategoryDataset |
2 | 1 | [[#1a9934a0]] | DefaultKeyedValues2D |
2 | 2 | [[#1a9934a0]] | DefaultKeyedValues |
2 | 3 | [[#1a9934a0]] | KeyedObjects2D |
2 | 4 | [[#1a9934a0]] | KeyedObjects2D |
2 | 5 | [[#1a9934a0]] | KeyedObjects2D |