CloneSet1479


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16219
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/Marker.java
26405
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/Marker.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
219
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/Marker.java

/**
 * Sets the paint and sends a {@link MarkerChangeEvent} 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 MarkerChangeEvent(this ));
}


First
Previous
Clone Instance
2
Line Count
6
Source Line
405
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/Marker.java

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


Clone AbstractionParameter Count: 2Parameter Bindings

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

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f9eee0]]
setPaint 
12[[#18f9eee0]]
setLabelPaint 
21[[#18f9ede0]]
paint 
22[[#18f9ede0]]
labelPaint