CloneSet1481


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
16316
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/LegendTitle.java
26383
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/LegendTitle.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
316
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/LegendTitle.java

/**
 * Sets the padding that will be applied to each item graphic in the 
 * legend and sends a {@link TitleChangeEvent} to all registered listeners.
 * 
 * @param padding  the padding (<code>null</code> not permitted).
 */
public void setLegendItemGraphicPadding(RectangleInsets padding) {
  if (padding == null) {
    throw new IllegalArgumentException("Null \'padding\' argument.");
  }
  this.legendItemGraphicPadding = padding;
  notifyListeners(new TitleChangeEvent(this ));
}


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

/**
 * Sets the padding used for the item labels in the legend.
 * 
 * @param padding  the padding (<code>null</code> not permitted).
 */
public void setItemLabelPadding(RectangleInsets padding) {
  if (padding == null) {
    throw new IllegalArgumentException("Null \'padding\' argument.");
  }
  this.itemLabelPadding = padding;
  notifyListeners(new TitleChangeEvent(this ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the padding used for the item labels in the legend.
     * 
     * @param padding  the padding (<code>null</code> not permitted).
     */
/**
     * Sets the padding that will be applied to each item graphic in the 
     * legend and sends a {@link TitleChangeEvent} to all registered listeners.
     * 
     * @param padding  the padding (<code>null</code> not permitted).
     */
public void [[#variable18fa0660]](RectangleInsets padding) {
  if (padding == null) {
    throw new IllegalArgumentException("Null \'padding\' argument.");
  }
  this. [[#variable18fa0520]]= padding;
  notifyListeners(new TitleChangeEvent(this ));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18fa0660]]
setLegendItemGraphicPadding 
12[[#18fa0660]]
setItemLabelPadding 
21[[#18fa0520]]
legendItemGraphicPadding 
22[[#18fa0520]]
itemLabelPadding