Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 10 | 1 | 0.956 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 347 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxisLabelInfo.java |
2 | 3 | 1219 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SegmentedTimeline.java |
3 | 3 | 172 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Tick.java |
4 | 3 | 1633 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java |
5 | 4 | 277 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/BlockContainer.java |
6 | 4 | 469 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ColorPalette.java |
7 | 3 | 542 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/DefaultDrawingSupplier.java |
8 | 3 | 162 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/DefaultKeyedValue.java |
9 | 3 | 251 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/gantt/Task.java |
10 | 4 | 189 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/DefaultKeyedValueDataset.java |
| |||||
/** * Returns a clone of the object. * * @return A clone. * * @throws CloneNotSupportedException if cloning is not supported. */ public Object clone() throws CloneNotSupportedException { PeriodAxisLabelInfo clone = (PeriodAxisLabelInfo) super.clone(); return clone; } |
| |||||
/** * Returns a clone of the timeline. * * @return A clone. * * @throws CloneNotSupportedException ??. */ public Object clone() throws CloneNotSupportedException { SegmentedTimeline clone = (SegmentedTimeline) super.clone(); return clone; } |
| |||||
/** * Returns a clone of the tick. * * @return A clone. * * @throws CloneNotSupportedException if there is a problem cloning. */ public Object clone() throws CloneNotSupportedException { Tick clone = (Tick) super.clone(); return clone; } |
| |||||
/** * Returns a clone of the object. * * @return A clone. * * @throws CloneNotSupportedException if some component of the axis does * not support cloning. */ public Object clone() throws CloneNotSupportedException { ValueAxis clone = (ValueAxis) super.clone(); return clone; } |
| |||||
/** * Returns a clone of the container. * * @return A clone. * * @throws CloneNotSupportedException if there is a problem cloning. */ public Object clone() throws CloneNotSupportedException { BlockContainer clone = (BlockContainer) super.clone(); // TODO : complete this return clone; } |
| |||||
/** * Returns a clone of the palette. * * @return A clone. * * @throws CloneNotSupportedException never. */ public Object clone() throws CloneNotSupportedException { ColorPalette clone = (ColorPalette) super.clone(); return clone; } |
| |||||
/** * Returns a clone. * * @return A clone. * * @throws CloneNotSupportedException if a component of the supplier does * not support cloning. */ public Object clone() throws CloneNotSupportedException { DefaultDrawingSupplier clone = (DefaultDrawingSupplier) super.clone(); return clone; } |
| |||||
/** * Returns a clone. It is assumed that both the key and value are * immutable objects, so only the references are cloned, not the objects * themselves. * * @return A clone. * * @throws CloneNotSupportedException Not thrown by this class, but * subclasses (if any) might. */ public Object clone() throws CloneNotSupportedException { DefaultKeyedValue clone = (DefaultKeyedValue) super.clone(); return clone; } |
| |||||
/** * Returns a clone of the task. * * @return A clone. * * @throws CloneNotSupportedException never thrown by this class, but * subclasses may not support cloning. */ public Object clone() throws CloneNotSupportedException { Task clone = (Task) super.clone(); return clone; } |
| |||||
/** * Creates 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 { DefaultKeyedValueDataset clone = (DefaultKeyedValueDataset) super.clone(); return clone; } |
| |||
/** * Returns a clone of the object. * * @return A clone. * * @throws CloneNotSupportedException if cloning is not supported. */ /** * Returns a clone of the timeline. * * @return A clone. * * @throws CloneNotSupportedException ??. */ /** * Returns a clone of the tick. * * @return A clone. * * @throws CloneNotSupportedException if there is a problem cloning. */ /** * Returns a clone of the object. * * @return A clone. * * @throws CloneNotSupportedException if some component of the axis does * not support cloning. */ /** * Returns a clone of the container. * * @return A clone. * * @throws CloneNotSupportedException if there is a problem cloning. */ /** * Returns a clone of the palette. * * @return A clone. * * @throws CloneNotSupportedException never. */ /** * Returns a clone. * * @return A clone. * * @throws CloneNotSupportedException if a component of the supplier does * not support cloning. */ /** * Returns a clone of the task. * * @return A clone. * * @throws CloneNotSupportedException never thrown by this class, but * subclasses may not support cloning. */ /** * Creates 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. It is assumed that both the key and value are * immutable objects, so only the references are cloned, not the objects * themselves. * * @return A clone. * * @throws CloneNotSupportedException Not thrown by this class, but * subclasses (if any) might. */ public Object clone() throws CloneNotSupportedException { [[#variable1a8d99a0]] clone = ( [[#variable1a8d99a0]]) super.clone(); // TODO : complete this return clone; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a8d99a0]] | PeriodAxisLabelInfo |
1 | 2 | [[#1a8d99a0]] | SegmentedTimeline |
1 | 3 | [[#1a8d99a0]] | Tick |
1 | 4 | [[#1a8d99a0]] | ValueAxis |
1 | 5 | [[#1a8d99a0]] | BlockContainer |
1 | 6 | [[#1a8d99a0]] | ColorPalette |
1 | 7 | [[#1a8d99a0]] | DefaultDrawingSupplier |
1 | 8 | [[#1a8d99a0]] | DefaultKeyedValue |
1 | 9 | [[#1a8d99a0]] | Task |
1 | 10 | [[#1a8d99a0]] | DefaultKeyedValueDataset |