CloneSet554


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
62201.000class_body_declarations[5]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
162520
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/LineAndShapeRenderer.java
261200
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/ScatterRenderer.java
Next
Last
Clone Instance
1
Line Count
62
Source Line
520
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/LineAndShapeRenderer.java

/**
 * Returns <code>true</code> if outlines should be drawn for shapes, and
 * <code>false</code> otherwise.
 *
 * @return A boolean.
 *
 * @see #setDrawOutlines(boolean)
 */
public boolean getDrawOutlines() {
  return this.drawOutlines;
}

/**
 * Sets the flag that controls whether outlines are drawn for
 * shapes, and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 * <P>
 * In some cases, shapes look better if they do NOT have an outline, but
 * this flag allows you to set your own preference.
 *
 * @param flag  the flag.
 *
 * @see #getDrawOutlines()
 */
public void setDrawOutlines(boolean flag) {
  this.drawOutlines = flag;
  fireChangeEvent();
}

/**
 * Returns the flag that controls whether the outline paint is used for
 * shape outlines.  If not, the regular series paint is used.
 *
 * @return A boolean.
 *
 * @see #setUseOutlinePaint(boolean)
 */
public boolean getUseOutlinePaint() {
  return this.useOutlinePaint;
}

/**
 * Sets the flag that controls whether the outline paint is used for shape
 * outlines, and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param use  the flag.
 *
 * @see #getUseOutlinePaint()
 */
public void setUseOutlinePaint(boolean use) {
  this.useOutlinePaint = use;
  fireChangeEvent();
}

// SHAPES FILLED
/**
 * Returns the flag used to control whether or not the shape for an item
 * is filled. The default implementation passes control to the
 * <code>getSeriesShapesFilled</code> method. You can override this method
 * if you require different behaviour.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return A boolean.
 */
public boolean getItemShapeFilled(int series, int item) {
  return getSeriesShapesFilled(series);
}


First
Previous
Clone Instance
2
Line Count
61
Source Line
200
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/ScatterRenderer.java

/**
 * Returns <code>true</code> if outlines should be drawn for shapes, and
 * <code>false</code> otherwise.
 *
 * @return A boolean.
 *
 * @see #setDrawOutlines(boolean)
 */
public boolean getDrawOutlines() {
  return this.drawOutlines;
}

/**
 * Sets the flag that controls whether outlines are drawn for
 * shapes, and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 * <p/>
 * In some cases, shapes look better if they do NOT have an outline, but
 * this flag allows you to set your own preference.
 *
 * @param flag the flag.
 *
 * @see #getDrawOutlines()
 */
public void setDrawOutlines(boolean flag) {
  this.drawOutlines = flag;
  fireChangeEvent();
}

/**
 * Returns the flag that controls whether the outline paint is used for
 * shape outlines.  If not, the regular series paint is used.
 *
 * @return A boolean.
 *
 * @see #setUseOutlinePaint(boolean)
 */
public boolean getUseOutlinePaint() {
  return this.useOutlinePaint;
}

/**
 * Sets the flag that controls whether the outline paint is used for shape
 * outlines, and sends a {@link RendererChangeEvent} to all registered
 * listeners.
 *
 * @param use the flag.
 *
 * @see #getUseOutlinePaint()
 */
public void setUseOutlinePaint(boolean use) {
  this.useOutlinePaint = use;
  fireChangeEvent();
}

// SHAPES FILLED
/**
 * Returns the flag used to control whether or not the shape for an item
 * is filled. The default implementation passes control to the
 * <code>getSeriesShapesFilled</code> method. You can override this method
 * if you require different behaviour.
 *
 * @param series the series index (zero-based).
 * @param item   the item index (zero-based).
 * @return A boolean.
 */
public boolean getItemShapeFilled(int series, int item) {
  return getSeriesShapesFilled(series);
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Returns <code>true</code> if outlines should be drawn for shapes, and
     * <code>false</code> otherwise.
     *
     * @return A boolean.
     *
     * @see #setDrawOutlines(boolean)
     */
public boolean getDrawOutlines() {
  return this.drawOutlines;
}

/**
     * Sets the flag that controls whether outlines are drawn for
     * shapes, and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     * <P>
     * In some cases, shapes look better if they do NOT have an outline, but
     * this flag allows you to set your own preference.
     *
     * @param flag  the flag.
     *
     * @see #getDrawOutlines()
     */
/**
     * Sets the flag that controls whether outlines are drawn for
     * shapes, and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     * <p/>
     * In some cases, shapes look better if they do NOT have an outline, but
     * this flag allows you to set your own preference.
     *
     * @param flag the flag.
     *
     * @see #getDrawOutlines()
     */
public void setDrawOutlines(boolean flag) {
  this.drawOutlines = flag;
  fireChangeEvent();
}

/**
     * Returns the flag that controls whether the outline paint is used for
     * shape outlines.  If not, the regular series paint is used.
     *
     * @return A boolean.
     *
     * @see #setUseOutlinePaint(boolean)
     */
public boolean getUseOutlinePaint() {
  return this.useOutlinePaint;
}

/**
     * Sets the flag that controls whether the outline paint is used for shape
     * outlines, and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param use  the flag.
     *
     * @see #getUseOutlinePaint()
     */
/**
     * Sets the flag that controls whether the outline paint is used for shape
     * outlines, and sends a {@link RendererChangeEvent} to all registered
     * listeners.
     *
     * @param use the flag.
     *
     * @see #getUseOutlinePaint()
     */
public void setUseOutlinePaint(boolean use) {
  this.useOutlinePaint = use;
  fireChangeEvent();
}

// SHAPES FILLED
/**
     * Returns the flag used to control whether or not the shape for an item
     * is filled. The default implementation passes control to the
     * <code>getSeriesShapesFilled</code> method. You can override this method
     * if you require different behaviour.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return A boolean.
     */
/**
     * Returns the flag used to control whether or not the shape for an item
     * is filled. The default implementation passes control to the
     * <code>getSeriesShapesFilled</code> method. You can override this method
     * if you require different behaviour.
     *
     * @param series the series index (zero-based).
     * @param item   the item index (zero-based).
     * @return A boolean.
     */
public boolean getItemShapeFilled(int series, int item) {
  return getSeriesShapesFilled(series);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None