CloneSet1459


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5210.965method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15140
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/AbstractDialLayer.java
24189
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/general/AbstractDataset.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
140
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/AbstractDialLayer.java

/**
 * Returns a clone of this instance.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if there is a problem cloning this
 *     instance.
 */
public Object clone() throws CloneNotSupportedException {
  AbstractDialLayer clone = (AbstractDialLayer) super.clone();
  // we don't clone the listeners
  clone.listenerList = new EventListenerList();
  return clone;
}


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

/**
 * Returns a clone of the dataset. The cloned dataset will NOT include the 
 * {@link DatasetChangeListener} references that have been registered with 
 * this dataset.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException  if the dataset does not support 
 *                                     cloning.
 */
public Object clone() throws CloneNotSupportedException {
  AbstractDataset clone = (AbstractDataset) super.clone();
  clone.listenerList = new EventListenerList();
  return clone;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns a clone of this instance.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException if there is a problem cloning this
     *     instance.
     */
/**
     * Returns a clone of the dataset. The cloned dataset will NOT include the 
     * {@link DatasetChangeListener} references that have been registered with 
     * this dataset.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException  if the dataset does not support 
     *                                     cloning.
     */
public Object clone() throws CloneNotSupportedException {
   [[#variable18f97c40]] clone = ( [[#variable18f97c40]]) super.clone();
  // we don't clone the listeners
  clone.listenerList = new EventListenerList();
  return clone;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f97c40]]
AbstractDialLayer 
12[[#18f97c40]]
AbstractDataset