CloneSet73


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
61820.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16157
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java
26184
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java
36127
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialBackground.java
46157
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialCap.java
56184
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialCap.java
66259
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPointer.java
76481
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPointer.java
86512
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPointer.java
96187
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialTextAnnotation.java
106353
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java
116380
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java
126434
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java
136153
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialFrame.java
146180
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialFrame.java
156242
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialRange.java
166433
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java
176544
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java
186651
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
157
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/ArcDialFrame.java

/**
 * Sets the background paint and sends a {@link DialLayerChangeEvent} to 
 * all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getBackgroundPaint()
 */
public void setBackgroundPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.backgroundPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the foreground paint and sends a {@link DialLayerChangeEvent} to 
 * all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getForegroundPaint()
 */
public void setForegroundPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.foregroundPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
3
Line Count
6
Source Line
127
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialBackground.java

/**
 * Sets the paint for the dial background and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 *
 * @see #getPaint()
 */
public void setPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.paint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the paint for the cap background and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 *
 * @see #getFillPaint()
 */
public void setFillPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.fillPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
5
Line Count
6
Source Line
184
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialCap.java

/**
 * Sets the paint used to draw the outline of the cap and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 *
 * @see #getOutlinePaint()
 */
public void setOutlinePaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.outlinePaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the paint and sends a {@link DialLayerChangeEvent} to all 
 * registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getPaint()
 */
public void setPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.paint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the fill paint and sends a {@link DialLayerChangeEvent} to all 
 * registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getFillPaint()
 * 
 * @since 1.0.8
 */
public void setFillPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.fillPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


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

/**
 * Sets the outline paint and sends a {@link DialLayerChangeEvent} to 
 * all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getOutlinePaint()
 * 
 * @since 1.0.8
 */
public void setOutlinePaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.outlinePaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
9
Line Count
6
Source Line
187
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialTextAnnotation.java

/**
 * Sets the paint used to display the label and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getPaint()
 */
public void setPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.paint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
10
Line Count
6
Source Line
353
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java

/**
 * Sets the paint and sends a {@link DialLayerChangeEvent} to all 
 * registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getPaint()
 */
public void setPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.paint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
11
Line Count
6
Source Line
380
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java

/**
 * Sets the background paint and sends a {@link DialLayerChangeEvent} to
 * all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getBackgroundPaint()
 */
public void setBackgroundPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.backgroundPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
12
Line Count
6
Source Line
434
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialValueIndicator.java

/**
 * Sets the outline paint and sends a {@link DialLayerChangeEvent} to all
 * registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getOutlinePaint()
 */
public void setOutlinePaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.outlinePaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
13
Line Count
6
Source Line
153
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialFrame.java

/**
 * Sets the background paint and sends a {@link DialLayerChangeEvent} to
 * all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getBackgroundPaint()
 */
public void setBackgroundPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.backgroundPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
14
Line Count
6
Source Line
180
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialFrame.java

/**
 * Sets the foreground paint and sends a {@link DialLayerChangeEvent} to 
 * all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getForegroundPaint()
 */
public void setForegroundPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.foregroundPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
15
Line Count
6
Source Line
242
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialRange.java

/**
 * Sets the paint used to highlight the range and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getPaint()
 */
public void setPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.paint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
16
Line Count
6
Source Line
433
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java

/**
 * Sets the major tick paint and sends a {@link DialLayerChangeEvent} to 
 * all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 *
 * @see #getMajorTickPaint()
 */
public void setMajorTickPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.majorTickPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Next
Previous
Clone Instance
17
Line Count
6
Source Line
544
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java

/**
 * Sets the paint used to draw the minor tick marks and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 * 
 * @param paint  the paint (<code>null</code> not permitted).
 * 
 * @see #getMinorTickPaint()
 */
public void setMinorTickPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.minorTickPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


First
Previous
Clone Instance
18
Line Count
6
Source Line
651
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/StandardDialScale.java

/**
 * Sets the paint used to draw the tick labels and sends a 
 * {@link DialLayerChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setTickLabelPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this.tickLabelPaint = paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the foreground paint and sends a {@link DialLayerChangeEvent} to 
     * all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getForegroundPaint()
     */
/**
     * Sets the background paint and sends a {@link DialLayerChangeEvent} to 
     * all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getBackgroundPaint()
     */
/**
     * Sets the paint for the dial background and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     *
     * @see #getPaint()
     */
/**
     * Sets the paint used to draw the outline of the cap and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     *
     * @see #getOutlinePaint()
     */
/**
     * Sets the paint for the cap background and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     *
     * @see #getFillPaint()
     */
/**
     * Sets the paint used to draw the tick labels and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     */
/**
     * Sets the paint used to draw the minor tick marks and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getMinorTickPaint()
     */
/**
     * Sets the major tick paint and sends a {@link DialLayerChangeEvent} to 
     * all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     *
     * @see #getMajorTickPaint()
     */
/**
     * Sets the paint used to display the label and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getPaint()
     */
/**
     * Sets the outline paint and sends a {@link DialLayerChangeEvent} to all
     * registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getOutlinePaint()
     */
/**
     * Sets the background paint and sends a {@link DialLayerChangeEvent} to
     * all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getBackgroundPaint()
     */
/**
     * Sets the paint and sends a {@link DialLayerChangeEvent} to all 
     * registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getPaint()
     */
/**
     * Sets the paint used to highlight the range and sends a 
     * {@link DialLayerChangeEvent} to all registered listeners.
     * 
     * @param paint  the paint (<code>null</code> not permitted).
     * 
     * @see #getPaint()
     */
/**
         * Sets the outline paint and sends a {@link DialLayerChangeEvent} to 
         * all registered listeners.
         * 
         * @param paint  the paint (<code>null</code> not permitted).
         * 
         * @see #getOutlinePaint()
         * 
         * @since 1.0.8
         */
/**
         * Sets the fill paint and sends a {@link DialLayerChangeEvent} to all 
         * registered listeners.
         * 
         * @param paint  the paint (<code>null</code> not permitted).
         * 
         * @see #getFillPaint()
         * 
         * @since 1.0.8
         */
/**
         * Sets the paint and sends a {@link DialLayerChangeEvent} to all 
         * registered listeners.
         * 
         * @param paint  the paint (<code>null</code> not permitted).
         * 
         * @see #getPaint()
         */
public void [[#variable150b5740]](Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument.");
  }
  this. [[#variable150b56c0]]= paint;
  notifyListeners(new DialLayerChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#150b5740]]
setBackgroundPaint 
12[[#150b5740]]
setForegroundPaint 
13[[#150b5740]]
setPaint 
14[[#150b5740]]
setFillPaint 
15[[#150b5740]]
setOutlinePaint 
16[[#150b5740]]
setPaint 
17[[#150b5740]]
setFillPaint 
18[[#150b5740]]
setOutlinePaint 
19[[#150b5740]]
setPaint 
110[[#150b5740]]
setPaint 
111[[#150b5740]]
setBackgroundPaint 
112[[#150b5740]]
setOutlinePaint 
113[[#150b5740]]
setBackgroundPaint 
114[[#150b5740]]
setForegroundPaint 
115[[#150b5740]]
setPaint 
116[[#150b5740]]
setMajorTickPaint 
117[[#150b5740]]
setMinorTickPaint 
118[[#150b5740]]
setTickLabelPaint 
21[[#150b56c0]]
backgroundPaint 
22[[#150b56c0]]
foregroundPaint 
23[[#150b56c0]]
paint 
24[[#150b56c0]]
fillPaint 
25[[#150b56c0]]
outlinePaint 
26[[#150b56c0]]
paint 
27[[#150b56c0]]
fillPaint 
28[[#150b56c0]]
outlinePaint 
29[[#150b56c0]]
paint 
210[[#150b56c0]]
paint 
211[[#150b56c0]]
backgroundPaint 
212[[#150b56c0]]
outlinePaint 
213[[#150b56c0]]
backgroundPaint 
214[[#150b56c0]]
foregroundPaint 
215[[#150b56c0]]
paint 
216[[#150b56c0]]
majorTickPaint 
217[[#150b56c0]]
minorTickPaint 
218[[#150b56c0]]
tickLabelPaint