Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 4 | 2 | 0.964 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 427 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java |
2 | 6 | 456 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java |
3 | 6 | 485 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/ValueAxis.java |
4 | 6 | 514 | 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 )); } |
| |||||
/** * 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 )); } |
| |||||
/** * 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 )); } |
| |||||
/** * 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 )); } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18d01fa0]] | setUpArrow |
1 | 2 | [[#18d01fa0]] | setDownArrow |
1 | 3 | [[#18d01fa0]] | setLeftArrow |
1 | 4 | [[#18d01fa0]] | setRightArrow |
2 | 1 | [[#18d01f00]] | upArrow |
2 | 2 | [[#18d01f00]] | downArrow |
2 | 3 | [[#18d01f00]] | leftArrow |
2 | 4 | [[#18d01f00]] | rightArrow |