CloneSet1633


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
18201.000class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
116290
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/BarRenderer.java
218237
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/BoxAndWhiskerRenderer.java
Next
Last
Clone Instance
1
Line Count
16
Source Line
290
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/BarRenderer.java

/**
 * Returns the maximum bar width, as a percentage of the available drawing
 * space.
 *
 * @return The maximum bar width.
 *
 * @see #setMaximumBarWidth(double)
 */
public double getMaximumBarWidth() {
  return this.maximumBarWidth;
}

/**
 * Sets the maximum bar width, which is specified as a percentage of the
 * available space for all bars, and sends a {@link RendererChangeEvent} to
 * all registered listeners.
 *
 * @param percent  the percent (where 0.05 is five percent).
 *
 * @see #getMaximumBarWidth()
 */
public void setMaximumBarWidth(double percent) {
  this.maximumBarWidth = percent;
  fireChangeEvent();
}


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

/**
 * Returns the maximum bar width as a percentage of the available drawing
 * space.
 *
 * @return The maximum bar width.
 *
 * @see #setMaximumBarWidth(double)
 *
 * @since 1.0.10
 */
public double getMaximumBarWidth() {
  return this.maximumBarWidth;
}

/**
 * Sets the maximum bar width, which is specified as a percentage of the
 * available space for all bars, and sends a {@link RendererChangeEvent}
 * to all registered listeners.
 *
 * @param percent  the maximum Bar Width (a percentage).
 *
 * @see #getMaximumBarWidth()
 *
 * @since 1.0.10
 */
public void setMaximumBarWidth(double percent) {
  this.maximumBarWidth = percent;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Returns the maximum bar width as a percentage of the available drawing
     * space.
     *
     * @return The maximum bar width.
     *
     * @see #setMaximumBarWidth(double)
     *
     * @since 1.0.10
     */
/**
     * Returns the maximum bar width, as a percentage of the available drawing
     * space.
     *
     * @return The maximum bar width.
     *
     * @see #setMaximumBarWidth(double)
     */
public double getMaximumBarWidth() {
  return this.maximumBarWidth;
}

/**
     * Sets the maximum bar width, which is specified as a percentage of the
     * available space for all bars, and sends a {@link RendererChangeEvent}
     * to all registered listeners.
     *
     * @param percent  the maximum Bar Width (a percentage).
     *
     * @see #getMaximumBarWidth()
     *
     * @since 1.0.10
     */
/**
     * Sets the maximum bar width, which is specified as a percentage of the
     * available space for all bars, and sends a {@link RendererChangeEvent} to
     * all registered listeners.
     *
     * @param percent  the percent (where 0.05 is five percent).
     *
     * @see #getMaximumBarWidth()
     */
public void setMaximumBarWidth(double percent) {
  this.maximumBarWidth = percent;
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None