CloneSet1477


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
16550
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Axis.java
26406
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/PeriodAxis.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
550
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/Axis.java

/**
 * Sets the stroke used to draw the axis line and sends an
 * {@link AxisChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke (<code>null</code> not permitted).
 *
 * @see #getAxisLineStroke()
 */
public void setAxisLineStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.axisLineStroke = stroke;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the stroke used to display minor tick marks, if they are 
 * visible, and sends a {@link AxisChangeEvent} to all registered 
 * listeners.
 * 
 * @param stroke  the stroke (<code>null</code> not permitted).
 */
public void setMinorTickMarkStroke(Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this.minorTickMarkStroke = stroke;
  notifyListeners(new AxisChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the stroke used to draw the axis line and sends an
     * {@link AxisChangeEvent} to all registered listeners.
     *
     * @param stroke  the stroke (<code>null</code> not permitted).
     *
     * @see #getAxisLineStroke()
     */
/**
     * Sets the stroke used to display minor tick marks, if they are 
     * visible, and sends a {@link AxisChangeEvent} to all registered 
     * listeners.
     * 
     * @param stroke  the stroke (<code>null</code> not permitted).
     */
public void [[#variable18f957c0]](Stroke stroke) {
  if (stroke == null) {
    throw new IllegalArgumentException("Null \'stroke\' argument.");
  }
  this. [[#variable18f95740]]= stroke;
  notifyListeners(new AxisChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f957c0]]
setAxisLineStroke 
12[[#18f957c0]]
setMinorTickMarkStroke 
21[[#18f95740]]
axisLineStroke 
22[[#18f95740]]
minorTickMarkStroke