CloneSet707


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6420.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16427
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java
26456
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java
36485
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java
46514
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
427
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java

/**
 * Sets the shape that can be displayed as an arrow pointing upwards at
 * the end of an axis line and sends an {@link AxisChangeEvent} to all
 * registered listeners.
 *
 * @param arrow  the arrow shape (<code>null</code> not permitted).
 *
 * @see #getUpArrow()
 */
public void setUpArrow(Shape arrow) {
  if (arrow == null) {
    throw new IllegalArgumentException("Null \'arrow\' argument.");
  }
  this.upArrow = arrow;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the shape that can be displayed as an arrow pointing downwards at
 * the end of an axis line and sends an {@link AxisChangeEvent} to all
 * registered listeners.
 *
 * @param arrow  the arrow shape (<code>null</code> not permitted).
 *
 * @see #getDownArrow()
 */
public void setDownArrow(Shape arrow) {
  if (arrow == null) {
    throw new IllegalArgumentException("Null \'arrow\' argument.");
  }
  this.downArrow = arrow;
  notifyListeners(new AxisChangeEvent(this ));
}


Next
Previous
Clone Instance
3
Line Count
6
Source Line
485
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java

/**
 * Sets the shape that can be displayed as an arrow pointing left at the
 * end of an axis line and sends an {@link AxisChangeEvent} to all
 * registered listeners.
 *
 * @param arrow  the arrow shape (<code>null</code> not permitted).
 *
 * @see #getLeftArrow()
 */
public void setLeftArrow(Shape arrow) {
  if (arrow == null) {
    throw new IllegalArgumentException("Null \'arrow\' argument.");
  }
  this.leftArrow = arrow;
  notifyListeners(new AxisChangeEvent(this ));
}


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

/**
 * Sets the shape that can be displayed as an arrow pointing rightwards at
 * the end of an axis line and sends an {@link AxisChangeEvent} to all
 * registered listeners.
 *
 * @param arrow  the arrow shape (<code>null</code> not permitted).
 *
 * @see #getRightArrow()
 */
public void setRightArrow(Shape arrow) {
  if (arrow == null) {
    throw new IllegalArgumentException("Null \'arrow\' argument.");
  }
  this.rightArrow = arrow;
  notifyListeners(new AxisChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the shape that can be displayed as an arrow pointing rightwards at
     * the end of an axis line and sends an {@link AxisChangeEvent} to all
     * registered listeners.
     *
     * @param arrow  the arrow shape (<code>null</code> not permitted).
     *
     * @see #getRightArrow()
     */
/**
     * Sets the shape that can be displayed as an arrow pointing left at the
     * end of an axis line and sends an {@link AxisChangeEvent} to all
     * registered listeners.
     *
     * @param arrow  the arrow shape (<code>null</code> not permitted).
     *
     * @see #getLeftArrow()
     */
/**
     * Sets the shape that can be displayed as an arrow pointing downwards at
     * the end of an axis line and sends an {@link AxisChangeEvent} to all
     * registered listeners.
     *
     * @param arrow  the arrow shape (<code>null</code> not permitted).
     *
     * @see #getDownArrow()
     */
/**
     * Sets the shape that can be displayed as an arrow pointing upwards at
     * the end of an axis line and sends an {@link AxisChangeEvent} to all
     * registered listeners.
     *
     * @param arrow  the arrow shape (<code>null</code> not permitted).
     *
     * @see #getUpArrow()
     */
public void [[#variable18d01fa0]](Shape arrow) {
  if (arrow == null) {
    throw new IllegalArgumentException("Null \'arrow\' argument.");
  }
  this. [[#variable18d01f00]]= arrow;
  notifyListeners(new AxisChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18d01fa0]]
setUpArrow 
12[[#18d01fa0]]
setDownArrow 
13[[#18d01fa0]]
setLeftArrow 
14[[#18d01fa0]]
setRightArrow 
21[[#18d01f00]]
upArrow 
22[[#18d01f00]]
downArrow 
23[[#18d01f00]]
leftArrow 
24[[#18d01f00]]
rightArrow