CloneSet797


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
29201.000class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
134382
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java
229592
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.java
Next
Last
Clone Instance
1
Line Count
34
Source Line
382
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java

/**
 * Sets the override flag that controls whether or not shapes are filled
 * for ALL series and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param filled  the flag.
 *
 * @see #setShapesFilled(Boolean)
 *
 * @deprecated As of 1.0.8, you should avoid using this method and rely
 *             on just the per-series ({@link #setSeriesShapesFilled(int,
 *             Boolean)}) and base-level ({@link #setBaseShapesVisible(
 *             boolean)}) settings.
 */
public void setShapesFilled(boolean filled) {
  // here we use BooleanUtilities to remain compatible with JDKs < 1.4
  setShapesFilled(BooleanUtilities.valueOf(filled));
}

/**
 * Sets the override flag that controls whether or not shapes are filled
 * for ALL series and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param filled  the flag (<code>null</code> permitted).
 *
 * @see #setShapesFilled(boolean)
 *
 * @deprecated As of 1.0.8, you should avoid using this method and rely
 *             on just the per-series ({@link #setSeriesShapesFilled(int,
 *             Boolean)}) and base-level ({@link #setBaseShapesVisible(
 *             boolean)}) settings.
 */
public void setShapesFilled(Boolean filled) {
  this.shapesFilled = filled;
  fireChangeEvent();
}

/**
 * Returns the flag used to control whether or not the shapes for a series
 * are filled.
 *
 * @param series  the series index (zero-based).
 *
 * @return A boolean.
 */
public Boolean getSeriesShapesFilled(int series) {
  return this.seriesShapesFilled.getBoolean(series);
}


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

/**
 * Sets the 'shapes filled' for ALL series and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param filled  the flag.
 *
 * @deprecated As of 1.0.7, use the per-series and base level settings.
 */
public void setShapesFilled(boolean filled) {
  setShapesFilled(BooleanUtilities.valueOf(filled));
}

/**
 * Sets the 'shapes filled' for ALL series and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param filled  the flag (<code>null</code> permitted).
 *
 * @deprecated As of 1.0.7, use the per-series and base level settings.
 */
public void setShapesFilled(Boolean filled) {
  this.shapesFilled = filled;
  fireChangeEvent();
}

/**
 * Returns the flag used to control whether or not the shapes for a series
 * are filled.
 *
 * @param series  the series index (zero-based).
 *
 * @return A boolean.
 *
 * @see #setSeriesShapesFilled(int, Boolean)
 */
public Boolean getSeriesShapesFilled(int series) {
  return this.seriesShapesFilled.getBoolean(series);
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Sets the 'shapes filled' for ALL series and sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param filled  the flag.
     *
     * @deprecated As of 1.0.7, use the per-series and base level settings.
     */
/**
     * Sets the override flag that controls whether or not shapes are filled
     * for ALL series and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param filled  the flag.
     *
     * @see #setShapesFilled(Boolean)
     *
     * @deprecated As of 1.0.8, you should avoid using this method and rely
     *             on just the per-series ({@link #setSeriesShapesFilled(int,
     *             Boolean)}) and base-level ({@link #setBaseShapesVisible(
     *             boolean)}) settings.
     */
public void setShapesFilled(boolean filled) {
  // here we use BooleanUtilities to remain compatible with JDKs < 1.4
  setShapesFilled(BooleanUtilities.valueOf(filled));
}

/**
     * Sets the 'shapes filled' for ALL series and sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param filled  the flag (<code>null</code> permitted).
     *
     * @deprecated As of 1.0.7, use the per-series and base level settings.
     */
/**
     * Sets the override flag that controls whether or not shapes are filled
     * for ALL series and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param filled  the flag (<code>null</code> permitted).
     *
     * @see #setShapesFilled(boolean)
     *
     * @deprecated As of 1.0.8, you should avoid using this method and rely
     *             on just the per-series ({@link #setSeriesShapesFilled(int,
     *             Boolean)}) and base-level ({@link #setBaseShapesVisible(
     *             boolean)}) settings.
     */
public void setShapesFilled(Boolean filled) {
  this.shapesFilled = filled;
  fireChangeEvent();
}

/**
     * Returns the flag used to control whether or not the shapes for a series
     * are filled.
     *
     * @param series  the series index (zero-based).
     *
     * @return A boolean.
     *
     * @see #setSeriesShapesFilled(int, Boolean)
     */
/**
     * Returns the flag used to control whether or not the shapes for a series
     * are filled.
     *
     * @param series  the series index (zero-based).
     *
     * @return A boolean.
     */
public Boolean getSeriesShapesFilled(int series) {
  return this.seriesShapesFilled.getBoolean(series);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None