CloneSet120


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
20620.969class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
119799
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SymbolAxis.java
219629
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPointer.java
319588
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/GanttRenderer.java
420816
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYBoxAndWhiskerRenderer.java
519592
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/LegendTitle.java
619897
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/TextTitle.java
Next
Last
Clone Instance
1
Line Count
19
Source Line
799
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/SymbolAxis.java

/**
 * Provides serialization support.
 *
 * @param stream  the output stream.
 *
 * @throws IOException  if there is an I/O error.
 */
private void writeObject(ObjectOutputStream stream) throws IOException {
  stream.defaultWriteObject();
  SerialUtilities.writePaint(this.gridBandPaint, stream);
  SerialUtilities.writePaint(this.gridBandAlternatePaint, stream);
}

/**
 * Provides serialization support.
 *
 * @param stream  the input stream.
 *
 * @throws IOException  if there is an I/O error.
 * @throws ClassNotFoundException  if there is a classpath problem.
 */
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
  stream.defaultReadObject();
  this.gridBandPaint = SerialUtilities.readPaint(stream);
  this.gridBandAlternatePaint = SerialUtilities.readPaint(stream);
}


Next
Previous
Clone Instance
2
Line Count
19
Source Line
629
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPointer.java

/**
 * Provides serialization support.
 *
 * @param stream  the output stream.
 *
 * @throws IOException  if there is an I/O error.
 */
private void writeObject(ObjectOutputStream stream) throws IOException {
  stream.defaultWriteObject();
  SerialUtilities.writePaint(this.fillPaint, stream);
  SerialUtilities.writePaint(this.outlinePaint, stream);
}

/**
 * Provides serialization support.
 *
 * @param stream  the input stream.
 *
 * @throws IOException  if there is an I/O error.
 * @throws ClassNotFoundException  if there is a classpath problem.
 */
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
  stream.defaultReadObject();
  this.fillPaint = SerialUtilities.readPaint(stream);
  this.outlinePaint = SerialUtilities.readPaint(stream);
}


Next
Previous
Clone Instance
3
Line Count
19
Source Line
588
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/GanttRenderer.java

/**
 * Provides serialization support.
 *
 * @param stream  the output stream.
 *
 * @throws IOException  if there is an I/O error.
 */
private void writeObject(ObjectOutputStream stream) throws IOException {
  stream.defaultWriteObject();
  SerialUtilities.writePaint(this.completePaint, stream);
  SerialUtilities.writePaint(this.incompletePaint, stream);
}

/**
 * Provides serialization support.
 *
 * @param stream  the input stream.
 *
 * @throws IOException  if there is an I/O error.
 * @throws ClassNotFoundException  if there is a classpath problem.
 */
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
  stream.defaultReadObject();
  this.completePaint = SerialUtilities.readPaint(stream);
  this.incompletePaint = SerialUtilities.readPaint(stream);
}


Next
Previous
Clone Instance
4
Line Count
20
Source Line
816
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYBoxAndWhiskerRenderer.java

/**
 * Provides serialization support.
 *
 * @param stream  the output stream.
 *
 * @throws IOException  if there is an I/O error.
 */
private void writeObject(ObjectOutputStream stream) throws IOException {
  stream.defaultWriteObject();
  SerialUtilities.writePaint(this.boxPaint, stream);
  SerialUtilities.writePaint(this.artifactPaint, stream);
}

/**
 * Provides serialization support.
 *
 * @param stream  the input stream.
 *
 * @throws IOException  if there is an I/O error.
 * @throws ClassNotFoundException  if there is a classpath problem.
 */
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
  stream.defaultReadObject();
  this.boxPaint = SerialUtilities.readPaint(stream);
  this.artifactPaint = SerialUtilities.readPaint(stream);
}


Next
Previous
Clone Instance
5
Line Count
19
Source Line
592
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/LegendTitle.java

/**
 * Provides serialization support.
 *
 * @param stream  the output stream.
 *
 * @throws IOException  if there is an I/O error.
 */
private void writeObject(ObjectOutputStream stream) throws IOException {
  stream.defaultWriteObject();
  SerialUtilities.writePaint(this.backgroundPaint, stream);
  SerialUtilities.writePaint(this.itemPaint, stream);
}

/**
 * Provides serialization support.
 *
 * @param stream  the input stream.
 *
 * @throws IOException  if there is an I/O error.
 * @throws ClassNotFoundException  if there is a classpath problem.
 */
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
  stream.defaultReadObject();
  this.backgroundPaint = SerialUtilities.readPaint(stream);
  this.itemPaint = SerialUtilities.readPaint(stream);
}


First
Previous
Clone Instance
6
Line Count
19
Source Line
897
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/TextTitle.java

/**
 * Provides serialization support.
 *
 * @param stream  the output stream.
 *
 * @throws IOException  if there is an I/O error.
 */
private void writeObject(ObjectOutputStream stream) throws IOException {
  stream.defaultWriteObject();
  SerialUtilities.writePaint(this.paint, stream);
  SerialUtilities.writePaint(this.backgroundPaint, stream);
}

/**
 * Provides serialization support.
 *
 * @param stream  the input stream.
 *
 * @throws IOException  if there is an I/O error.
 * @throws ClassNotFoundException  if there is a classpath problem.
 */
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
  stream.defaultReadObject();
  this.paint = SerialUtilities.readPaint(stream);
  this.backgroundPaint = SerialUtilities.readPaint(stream);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Provides serialization support.
     *
     * @param stream  the output stream.
     *
     * @throws IOException  if there is an I/O error.
     */
/**
         * Provides serialization support.
         *
         * @param stream  the output stream.
         *
         * @throws IOException  if there is an I/O error.
         */
private void writeObject(ObjectOutputStream stream) throws IOException {
  stream.defaultWriteObject();
  SerialUtilities.writePaint(this. [[#variable1aa44180]], stream);
  SerialUtilities.writePaint(this. [[#variable1aa44080]], stream);
}

/**
     * Provides serialization support.
     *
     * @param stream  the input stream.
     *
     * @throws IOException  if there is an I/O error.
     * @throws ClassNotFoundException  if there is a classpath problem.
     */
/**
         * Provides serialization support.
         *
         * @param stream  the input stream.
         *
         * @throws IOException  if there is an I/O error.
         * @throws ClassNotFoundException  if there is a classpath problem.
         */
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
  stream.defaultReadObject();
  this. [[#variable1aa44180]]= SerialUtilities.readPaint(stream);
  this. [[#variable1aa44080]]= SerialUtilities.readPaint(stream);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1aa44180]]
gridBandPaint 
12[[#1aa44180]]
fillPaint 
13[[#1aa44180]]
completePaint 
14[[#1aa44180]]
boxPaint 
15[[#1aa44180]]
backgroundPaint 
16[[#1aa44180]]
paint 
21[[#1aa44080]]
gridBandAlternatePaint 
22[[#1aa44080]]
outlinePaint 
23[[#1aa44080]]
incompletePaint 
24[[#1aa44080]]
artifactPaint 
25[[#1aa44080]]
itemPaint 
26[[#1aa44080]]
backgroundPaint