CloneSet857


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4420.957method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14596
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java
24763
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java
342119
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java
442214
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
596
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/AbstractRenderer.java

/**
 * Sets the flag that controls the visibility of ALL series and sends a
 * {@link RendererChangeEvent} to all registered listeners.  This flag
 * overrides the per series and default settings - you must set it to
 * <code>null</code> if you want the other settings to apply.
 *
 * @param visible  the flag (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @see #getSeriesVisible()
 *
 * @deprecated This method should no longer be used (as of version 1.0.6).
 *     It is sufficient to rely on {@link #setSeriesVisible(int, Boolean)}
 *     and {@link #setBaseSeriesVisible(boolean)}.
 */
public void setSeriesVisible(Boolean visible, boolean notify) {
  this.seriesVisible = visible;
  if (notify) {
    fireChangeEvent();
  }
}


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

/**
 * Sets the flag that controls the visibility of ALL series in the legend
 * and sends a {@link RendererChangeEvent} to all registered listeners.
 * This flag overrides the per series and default settings - you must set
 * it to <code>null</code> if you want the other settings to apply.
 *
 * @param visible  the flag (<code>null</code> permitted).
 * @param notify  notify listeners?
 *
 * @see #getSeriesVisibleInLegend()
 *
 * @deprecated This method should no longer be used (as of version 1.0.6).
 *     It is sufficient to rely on {@link #setSeriesVisibleInLegend(int,
 *     Boolean, boolean)} and {@link #setBaseSeriesVisibleInLegend(boolean,
 *     boolean)}.
 */
public void setSeriesVisibleInLegend(Boolean visible, boolean notify) {
  this.seriesVisibleInLegend = visible;
  if (notify) {
    fireChangeEvent();
  }
}


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

/**
 * Sets the visibility of item labels for ALL series and, if requested,
 * sends a {@link RendererChangeEvent} to all registered listeners.
 *
 * @param visible  a flag that controls whether or not the item labels are
 *                 visible (<code>null</code> permitted).
 * @param notify  a flag that controls whether or not listeners are
 *                notified.
 *
 * @deprecated This method should no longer be used (as of version 1.0.6).
 *     It is sufficient to rely on {@link #setSeriesItemLabelsVisible(int,
 *     Boolean, boolean)} and {@link #setBaseItemLabelsVisible(Boolean,
 *     boolean)}.
 */
public void setItemLabelsVisible(Boolean visible, boolean notify) {
  this.itemLabelsVisible = visible;
  if (notify) {
    fireChangeEvent();
  }
}


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

/**
 * Sets the base visibility for item labels and, if requested, sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param visible  the flag (<code>null</code> is permitted, and viewed
 *     as equivalent to <code>Boolean.FALSE</code>).
 * @param notify  a flag that controls whether or not listeners are
 *                notified.
 *
 * @see #getBaseItemLabelsVisible()
 */
public void setBaseItemLabelsVisible(Boolean visible, boolean notify) {
  this.baseItemLabelsVisible = visible;
  if (notify) {
    fireChangeEvent();
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Sets the base visibility for item labels and, if requested, sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param visible  the flag (<code>null</code> is permitted, and viewed
     *     as equivalent to <code>Boolean.FALSE</code>).
     * @param notify  a flag that controls whether or not listeners are
     *                notified.
     *
     * @see #getBaseItemLabelsVisible()
     */
/**
     * Sets the visibility of item labels for ALL series and, if requested,
     * sends a {@link RendererChangeEvent} to all registered listeners.
     *
     * @param visible  a flag that controls whether or not the item labels are
     *                 visible (<code>null</code> permitted).
     * @param notify  a flag that controls whether or not listeners are
     *                notified.
     *
     * @deprecated This method should no longer be used (as of version 1.0.6).
     *     It is sufficient to rely on {@link #setSeriesItemLabelsVisible(int,
     *     Boolean, boolean)} and {@link #setBaseItemLabelsVisible(Boolean,
     *     boolean)}.
     */
/**
     * Sets the flag that controls the visibility of ALL series in the legend
     * and sends a {@link RendererChangeEvent} to all registered listeners.
     * This flag overrides the per series and default settings - you must set
     * it to <code>null</code> if you want the other settings to apply.
     *
     * @param visible  the flag (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @see #getSeriesVisibleInLegend()
     *
     * @deprecated This method should no longer be used (as of version 1.0.6).
     *     It is sufficient to rely on {@link #setSeriesVisibleInLegend(int,
     *     Boolean, boolean)} and {@link #setBaseSeriesVisibleInLegend(boolean,
     *     boolean)}.
     */
/**
     * Sets the flag that controls the visibility of ALL series and sends a
     * {@link RendererChangeEvent} to all registered listeners.  This flag
     * overrides the per series and default settings - you must set it to
     * <code>null</code> if you want the other settings to apply.
     *
     * @param visible  the flag (<code>null</code> permitted).
     * @param notify  notify listeners?
     *
     * @see #getSeriesVisible()
     *
     * @deprecated This method should no longer be used (as of version 1.0.6).
     *     It is sufficient to rely on {@link #setSeriesVisible(int, Boolean)}
     *     and {@link #setBaseSeriesVisible(boolean)}.
     */
public void [[#variable18dbed20]](Boolean visible, boolean notify) {
  this. [[#variable18dbf640]]= visible;
  if (notify) {
    fireChangeEvent();
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18dbed20]]
setSeriesVisible 
12[[#18dbed20]]
setSeriesVisibleInLegend 
13[[#18dbed20]]
setItemLabelsVisible 
14[[#18dbed20]]
setBaseItemLabelsVisible 
21[[#18dbf640]]
seriesVisible 
22[[#18dbf640]]
seriesVisibleInLegend 
23[[#18dbf640]]
itemLabelsVisible 
24[[#18dbf640]]
baseItemLabelsVisible