CloneSet818


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6420.958method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16181
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java
26204
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java
36226
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java
46249
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
181
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java

/**
 * Sets the paint that will be used to draw the first bar and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setFirstBarPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument");
  }
  this.firstBarPaint = paint;
  fireChangeEvent();
}


Next
Previous
Clone Instance
2
Line Count
6
Source Line
204
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java

/**
 * Sets the paint that will be used to draw the last bar and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setLastBarPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument");
  }
  this.lastBarPaint = paint;
  fireChangeEvent();
}


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

/**
 * Sets the paint that will be used to draw bars having positive values.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setPositiveBarPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument");
  }
  this.positiveBarPaint = paint;
  fireChangeEvent();
}


First
Previous
Clone Instance
4
Line Count
6
Source Line
249
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/WaterfallBarRenderer.java

/**
 * Sets the paint that will be used to draw bars having negative values,
 * and sends a {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setNegativeBarPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument");
  }
  this.negativeBarPaint = paint;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the paint that will be used to draw bars having negative values,
     * and sends a {@link RendererChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     */
/**
     * Sets the paint that will be used to draw bars having positive values.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     */
/**
     * Sets the paint that will be used to draw the last bar and sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     */
/**
     * Sets the paint that will be used to draw the first bar and sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param paint  the paint (<code>null</code> not permitted).
     */
public void [[#variable18d875e0]](Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null \'paint\' argument");
  }
  this. [[#variable18d87580]]= paint;
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18d875e0]]
setFirstBarPaint 
12[[#18d875e0]]
setLastBarPaint 
13[[#18d875e0]]
setPositiveBarPaint 
14[[#18d875e0]]
setNegativeBarPaint 
21[[#18d87580]]
firstBarPaint 
22[[#18d87580]]
lastBarPaint 
23[[#18d87580]]
positiveBarPaint 
24[[#18d87580]]
negativeBarPaint