CloneSet270


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
31010.956method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13347
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxisLabelInfo.java
231219
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SegmentedTimeline.java
33172
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Tick.java
431633
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java
54277
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/BlockContainer.java
64469
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ColorPalette.java
73542
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/DefaultDrawingSupplier.java
83162
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/DefaultKeyedValue.java
93251
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/gantt/Task.java
104189
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/DefaultKeyedValueDataset.java
Next
Last
Clone Instance
1
Line Count
3
Source Line
347
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxisLabelInfo.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;
}


Next
Previous
Clone Instance
2
Line Count
3
Source Line
1219
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SegmentedTimeline.java

/**
 * Returns a clone of the timeline.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException ??.
 */
public Object clone() throws CloneNotSupportedException {
  SegmentedTimeline clone = (SegmentedTimeline) super.clone();
  return clone;
}


Next
Previous
Clone Instance
3
Line Count
3
Source Line
172
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Tick.java

/** 
 * 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;
}


Next
Previous
Clone Instance
4
Line Count
3
Source Line
1633
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java

/**
 * 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;
}


Next
Previous
Clone Instance
5
Line Count
4
Source Line
277
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/BlockContainer.java

/**
 * 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;
}


Next
Previous
Clone Instance
6
Line Count
4
Source Line
469
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ColorPalette.java

/**
 * Returns a clone of the palette.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException never.
 */
public Object clone() throws CloneNotSupportedException {
  ColorPalette clone = (ColorPalette) super.clone();
  return clone;
}


Next
Previous
Clone Instance
7
Line Count
3
Source Line
542
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/DefaultDrawingSupplier.java

/**
 * 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;
}


Next
Previous
Clone Instance
8
Line Count
3
Source Line
162
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/DefaultKeyedValue.java

/**
 * 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;
}


Next
Previous
Clone Instance
9
Line Count
3
Source Line
251
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/gantt/Task.java

/**
 * 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;
}


First
Previous
Clone Instance
10
Line Count
4
Source Line
189
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/DefaultKeyedValueDataset.java

/**
 * 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;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a8d99a0]]
PeriodAxisLabelInfo 
12[[#1a8d99a0]]
SegmentedTimeline 
13[[#1a8d99a0]]
Tick 
14[[#1a8d99a0]]
ValueAxis 
15[[#1a8d99a0]]
BlockContainer 
16[[#1a8d99a0]]
ColorPalette 
17[[#1a8d99a0]]
DefaultDrawingSupplier 
18[[#1a8d99a0]]
DefaultKeyedValue 
19[[#1a8d99a0]]
Task 
110[[#1a8d99a0]]
DefaultKeyedValueDataset