CloneSet1696


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

/**
 * Sets the domain axis and sends a {@link PlotChangeEvent} to all 
 * registered listeners.
 * 
 * @param axis  the axis (<code>null</code> not permitted).
 * 
 * @since 1.0.3
 * 
 * @see #getDomainAxis()
 */
public void setDomainAxis(ValueAxis axis) {
  if (axis == null) {
    throw new IllegalArgumentException("Null \'axis\' argument.");
  }
  this.domainAxis = axis;
  fireChangeEvent();
}


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

/**
 * Sets the range axis and sends a {@link PlotChangeEvent} to all 
 * registered listeners.
 * 
 * @param axis  the axis (<code>null</code> not permitted).
 * 
 * @since 1.0.3
 * 
 * @see #getRangeAxis()
 */
public void setRangeAxis(ValueAxis axis) {
  if (axis == null) {
    throw new IllegalArgumentException("Null \'axis\' argument.");
  }
  this.rangeAxis = axis;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the range axis and sends a {@link PlotChangeEvent} to all 
     * registered listeners.
     * 
     * @param axis  the axis (<code>null</code> not permitted).
     * 
     * @since 1.0.3
     * 
     * @see #getRangeAxis()
     */
/**
     * Sets the domain axis and sends a {@link PlotChangeEvent} to all 
     * registered listeners.
     * 
     * @param axis  the axis (<code>null</code> not permitted).
     * 
     * @since 1.0.3
     * 
     * @see #getDomainAxis()
     */
public void [[#variable1a02ca60]](ValueAxis axis) {
  if (axis == null) {
    throw new IllegalArgumentException("Null \'axis\' argument.");
  }
  this. [[#variable1a02ca00]]= axis;
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a02ca60]]
setDomainAxis 
12[[#1a02ca60]]
setRangeAxis 
21[[#1a02ca00]]
domainAxis 
22[[#1a02ca00]]
rangeAxis