CloneSet872


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

/**
 * Sets the flag that controls whether a series is visible and, if
 * requested, sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param series  the series index.
 * @param visible  the flag (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @see #getSeriesVisible(int)
 */
public void setSeriesVisible(int series, Boolean visible, boolean notify) {
  this.seriesVisibleList.setBoolean(series, visible);
  if (notify) {
    fireChangeEvent();
  }
}


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

/**
 * Sets the flag that controls whether a series is visible in the legend
 * and, if requested, sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param series  the series index.
 * @param visible  the flag (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @see #getSeriesVisibleInLegend(int)
 */
public void setSeriesVisibleInLegend(int series, Boolean visible, boolean notify) {
  this.seriesVisibleInLegendList.setBoolean(series, visible);
  if (notify) {
    fireChangeEvent();
  }
}


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

/**
 * Sets the visibility of item labels for a series and, if requested, sends
 * a {@link RendererChangeEvent} to all registered listeners.
 *
 * @param series  the series index (zero-based).
 * @param visible  the visible flag.
 * @param notify  a flag that controls whether or not listeners are
 *                notified.
 */
public void setSeriesItemLabelsVisible(int series, Boolean visible, boolean notify) {
  this.itemLabelsVisibleList.setBoolean(series, visible);
  if (notify) {
    fireChangeEvent();
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the visibility of item labels for a series and, if requested, sends
     * a {@link RendererChangeEvent} to all registered listeners.
     *
     * @param series  the series index (zero-based).
     * @param visible  the visible flag.
     * @param notify  a flag that controls whether or not listeners are
     *                notified.
     */
/**
     * Sets the flag that controls whether a series is visible in the legend
     * and, if requested, sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param series  the series index.
     * @param visible  the flag (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @see #getSeriesVisibleInLegend(int)
     */
/**
     * Sets the flag that controls whether a series is visible and, if
     * requested, sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param series  the series index.
     * @param visible  the flag (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @see #getSeriesVisible(int)
     */
public void [[#variable18dc15a0]](int series, Boolean visible, boolean notify) {
  this. [[#variable18dc1500]].setBoolean(series, visible);
  if (notify) {
    fireChangeEvent();
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18dc15a0]]
setSeriesVisible 
12[[#18dc15a0]]
setSeriesVisibleInLegend 
13[[#18dc15a0]]
setSeriesItemLabelsVisible 
21[[#18dc1500]]
seriesVisibleList 
22[[#18dc1500]]
seriesVisibleInLegendList 
23[[#18dc1500]]
itemLabelsVisibleList