CloneSet1361


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8220.968method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
182703
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java
282883
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java
Next
Last
Clone Instance
1
Line Count
8
Source Line
2703
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java

/**
 * Sets the base positive item label position and, if requested, sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param position  the position (<code>null</code> not permitted).
 * @param notify  notify registered listeners?
 *
 * @see #getBasePositiveItemLabelPosition()
 */
public void setBasePositiveItemLabelPosition(ItemLabelPosition position, boolean notify) {
  if (position == null) {
    throw new IllegalArgumentException("Null \'position\' argument.");
  }
  this.basePositiveItemLabelPosition = position;
  if (notify) {
    fireChangeEvent();
  }
}


First
Previous
Clone Instance
2
Line Count
8
Source Line
2883
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java

/**
 * Sets the base negative item label position and, if requested, sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param position  the position (<code>null</code> not permitted).
 * @param notify  notify registered listeners?
 *
 * @see #getBaseNegativeItemLabelPosition()
 */
public void setBaseNegativeItemLabelPosition(ItemLabelPosition position, boolean notify) {
  if (position == null) {
    throw new IllegalArgumentException("Null \'position\' argument.");
  }
  this.baseNegativeItemLabelPosition = position;
  if (notify) {
    fireChangeEvent();
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the base negative item label position and, if requested, sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param position  the position (<code>null</code> not permitted).
     * @param notify  notify registered listeners?
     *
     * @see #getBaseNegativeItemLabelPosition()
     */
/**
     * Sets the base positive item label position and, if requested, sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param position  the position (<code>null</code> not permitted).
     * @param notify  notify registered listeners?
     *
     * @see #getBasePositiveItemLabelPosition()
     */
public void [[#variable18f5d840]](ItemLabelPosition position, boolean notify) {
  if (position == null) {
    throw new IllegalArgumentException("Null \'position\' argument.");
  }
  this. [[#variable18f5d7a0]]= position;
  if (notify) {
    fireChangeEvent();
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f5d840]]
setBasePositiveItemLabelPosition 
12[[#18f5d840]]
setBaseNegativeItemLabelPosition 
21[[#18f5d7a0]]
basePositiveItemLabelPosition 
22[[#18f5d7a0]]
baseNegativeItemLabelPosition