CloneSet362


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
64230.984interface_member_declarations[8]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
182972
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/CategoryItemRenderer.java
264805
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYItemRenderer.java
Next
Last
Clone Instance
1
Line Count
82
Source Line
972
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/CategoryItemRenderer.java

/**
 * Sets a flag that controls the visibility of the item labels for a series.
 *
 * @param series  the series index (zero-based).
 * @param visible  the flag.
 *
 * @see #isSeriesItemLabelsVisible(int)
 */
public void setSeriesItemLabelsVisible(int series, boolean visible);
/**
 * Sets a flag that controls the visibility of the item labels for a series.
 *
 * @param series  the series index (zero-based).
 * @param visible  the flag (<code>null</code> permitted).
 *
 * @see #isSeriesItemLabelsVisible(int)
 */
public void setSeriesItemLabelsVisible(int series, Boolean visible);
/**
 * 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.
 *
 * @see #isSeriesItemLabelsVisible(int)
 */
public void setSeriesItemLabelsVisible(int series, Boolean visible, boolean notify);
/**
 * Returns the base setting for item label visibility.  A <code>null</code>
 * result should be interpreted as equivalent to <code>Boolean.FALSE</code>
 * (this is an error in the API design, the return value should have been
 * a boolean primitive).
 *
 * @return A flag (possibly <code>null</code>).
 *
 * @see #setBaseItemLabelsVisible(Boolean)
 */
public Boolean getBaseItemLabelsVisible();
/**
 * Sets the base flag that controls whether or not item labels are visible
 * and sends a {@link RendererChangeEvent} to all registered listeners.
 *
 * @param visible  the flag.
 *
 * @see #getBaseItemLabelsVisible()
 */
public void setBaseItemLabelsVisible(boolean visible);
/**
 * Sets the base setting for item label visibility and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param visible  the flag (<code>null</code> permitted).
 *
 * @see #getBaseItemLabelsVisible()
 */
public void setBaseItemLabelsVisible(Boolean visible);
/**
 * Sets the base visibility for item labels and, if requested, sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param visible  the visibility flag.
 * @param notify  a flag that controls whether or not listeners are
 *                notified.
 *
 * @see #getBaseItemLabelsVisible()
 */
public void setBaseItemLabelsVisible(Boolean visible, boolean notify);
// ITEM LABEL GENERATOR
/**
 * Returns the item label generator for the specified data item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The generator (possibly <code>null</code>).
 */
public CategoryItemLabelGenerator getItemLabelGenerator(int series, int item);


First
Previous
Clone Instance
2
Line Count
64
Source Line
805
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYItemRenderer.java

/**
 * Sets a flag that controls the visibility of the item labels for a series.
 * 
 * @param series  the series index (zero-based).
 * @param visible  the flag.
 */
public void setSeriesItemLabelsVisible(int series, boolean visible);
/**
 * Sets a flag that controls the visibility of the item labels for a series.
 * 
 * @param series  the series index (zero-based).
 * @param visible  the flag (<code>null</code> permitted).
 */
public void setSeriesItemLabelsVisible(int series, Boolean visible);
/**
 * 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);
/**
 * Returns the base setting for item label visibility.
 * 
 * @return A flag (possibly <code>null</code>).
 */
public Boolean getBaseItemLabelsVisible();
/**
 * Sets the base flag that controls whether or not item labels are visible.
 * 
 * @param visible  the flag.
 */
public void setBaseItemLabelsVisible(boolean visible);
/**
 * Sets the base setting for item label visibility.
 * 
 * @param visible  the flag (<code>null</code> permitted).
 */
public void setBaseItemLabelsVisible(Boolean visible);
/**
 * Sets the base visibility for item labels and, if requested, sends a 
 * {@link RendererChangeEvent} to all registered listeners.
 * 
 * @param visible  the visibility flag.
 * @param notify  a flag that controls whether or not listeners are
 *                notified.
 */
public void setBaseItemLabelsVisible(Boolean visible, boolean notify);
// ITEM LABEL GENERATOR
/**
 * Returns the item label generator for a data item.
 *
 * @param row  the row index (zero based).
 * @param column  the column index (zero based).
 *
 * @return The generator (possibly <code>null</code>).
 */
public XYItemLabelGenerator getItemLabelGenerator(int row, int column);


Clone AbstractionParameter Count: 3Parameter Bindings

/**
     * Sets a flag that controls the visibility of the item labels for a series.
     * 
     * @param series  the series index (zero-based).
     * @param visible  the flag.
     */
/**
     * Sets a flag that controls the visibility of the item labels for a series.
     *
     * @param series  the series index (zero-based).
     * @param visible  the flag.
     *
     * @see #isSeriesItemLabelsVisible(int)
     */
public void setSeriesItemLabelsVisible(int series, boolean visible);
/**
     * Sets a flag that controls the visibility of the item labels for a series.
     * 
     * @param series  the series index (zero-based).
     * @param visible  the flag (<code>null</code> permitted).
     */
/**
     * Sets a flag that controls the visibility of the item labels for a series.
     *
     * @param series  the series index (zero-based).
     * @param visible  the flag (<code>null</code> permitted).
     *
     * @see #isSeriesItemLabelsVisible(int)
     */
public void setSeriesItemLabelsVisible(int series, Boolean visible);
/**
     * 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 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.
     *
     * @see #isSeriesItemLabelsVisible(int)
     */
public void setSeriesItemLabelsVisible(int series, Boolean visible, boolean notify);
/**
     * Returns the base setting for item label visibility.
     * 
     * @return A flag (possibly <code>null</code>).
     */
/**
     * Returns the base setting for item label visibility.  A <code>null</code>
     * result should be interpreted as equivalent to <code>Boolean.FALSE</code>
     * (this is an error in the API design, the return value should have been
     * a boolean primitive).
     *
     * @return A flag (possibly <code>null</code>).
     *
     * @see #setBaseItemLabelsVisible(Boolean)
     */
public Boolean getBaseItemLabelsVisible();
/**
     * Sets the base flag that controls whether or not item labels are visible.
     * 
     * @param visible  the flag.
     */
/**
     * Sets the base flag that controls whether or not item labels are visible
     * and sends a {@link RendererChangeEvent} to all registered listeners.
     *
     * @param visible  the flag.
     *
     * @see #getBaseItemLabelsVisible()
     */
public void setBaseItemLabelsVisible(boolean visible);
/**
     * Sets the base setting for item label visibility.
     * 
     * @param visible  the flag (<code>null</code> permitted).
     */
/**
     * Sets the base setting for item label visibility and sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param visible  the flag (<code>null</code> permitted).
     *
     * @see #getBaseItemLabelsVisible()
     */
public void setBaseItemLabelsVisible(Boolean visible);
/**
     * Sets the base visibility for item labels and, if requested, sends a 
     * {@link RendererChangeEvent} to all registered listeners.
     * 
     * @param visible  the visibility flag.
     * @param notify  a flag that controls whether or not listeners are
     *                notified.
     */
/**
     * Sets the base visibility for item labels and, if requested, sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param visible  the visibility flag.
     * @param notify  a flag that controls whether or not listeners are
     *                notified.
     *
     * @see #getBaseItemLabelsVisible()
     */
public void setBaseItemLabelsVisible(Boolean visible, boolean notify);
// ITEM LABEL GENERATOR
/**
     * Returns the item label generator for a data item.
     *
     * @param row  the row index (zero based).
     * @param column  the column index (zero based).
     *
     * @return The generator (possibly <code>null</code>).
     */
/**
     * Returns the item label generator for the specified data item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The generator (possibly <code>null</code>).
     */
public [[#variable1a9442e0]] getItemLabelGenerator(int  [[#variable1a93fcc0]], int  [[#variable1a93fce0]]);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a9442e0]]
CategoryItemLabelGenerator 
12[[#1a9442e0]]
XYItemLabelGenerator 
21[[#1a93fcc0]]
series 
22[[#1a93fcc0]]
row 
31[[#1a93fce0]]
item 
32[[#1a93fce0]]
column