CloneSet643


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
52201.000class_body_declarations[5]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
152131
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/LineRenderer3D.java
243100
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYLine3DRenderer.java
Next
Last
Clone Instance
1
Line Count
52
Source Line
131
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/LineRenderer3D.java

/**
 * Returns the x-offset for the 3D effect.
 *
 * @return The x-offset.
 *
 * @see #setXOffset(double)
 * @see #getYOffset()
 */
public double getXOffset() {
  return this.xOffset;
}

/**
 * Returns the y-offset for the 3D effect.
 *
 * @return The y-offset.
 *
 * @see #setYOffset(double)
 * @see #getXOffset()
 */
public double getYOffset() {
  return this.yOffset;
}

/**
 * Sets the x-offset and sends a {@link RendererChangeEvent} to all
 * registered listeners.
 *
 * @param xOffset  the x-offset.
 *
 * @see #getXOffset()
 */
public void setXOffset(double xOffset) {
  this.xOffset = xOffset;
  fireChangeEvent();
}

/**
 * Sets the y-offset and sends a {@link RendererChangeEvent} to all
 * registered listeners.
 *
 * @param yOffset  the y-offset.
 *
 * @see #getYOffset()
 */
public void setYOffset(double yOffset) {
  this.yOffset = yOffset;
  fireChangeEvent();
}

/**
 * Returns the paint used to highlight the left and bottom wall in the plot
 * background.
 *
 * @return The paint.
 *
 * @see #setWallPaint(Paint)
 */
public Paint getWallPaint() {
  return this.wallPaint;
}


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

/**
 * Returns the x-offset for the 3D effect.
 *
 * @return The 3D effect.
 */
public double getXOffset() {
  return this.xOffset;
}

/**
 * Returns the y-offset for the 3D effect.
 *
 * @return The 3D effect.
 */
public double getYOffset() {
  return this.yOffset;
}

/**
 * Sets the x-offset and sends a {@link RendererChangeEvent} to all 
 * registered listeners.
 * 
 * @param xOffset  the x-offset.
 */
public void setXOffset(double xOffset) {
  this.xOffset = xOffset;
  fireChangeEvent();
}

/**
 * Sets the y-offset and sends a {@link RendererChangeEvent} to all 
 * registered listeners.
 * 
 * @param yOffset  the y-offset.
 */
public void setYOffset(double yOffset) {
  this.yOffset = yOffset;
  fireChangeEvent();
}

/**
 * Returns the paint used to highlight the left and bottom wall in the plot
 * background.
 *
 * @return The paint.
 */
public Paint getWallPaint() {
  return this.wallPaint;
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Returns the x-offset for the 3D effect.
     *
     * @return The x-offset.
     *
     * @see #setXOffset(double)
     * @see #getYOffset()
     */
/**
     * Returns the x-offset for the 3D effect.
     *
     * @return The 3D effect.
     */
public double getXOffset() {
  return this.xOffset;
}

/**
     * Returns the y-offset for the 3D effect.
     *
     * @return The y-offset.
     *
     * @see #setYOffset(double)
     * @see #getXOffset()
     */
/**
     * Returns the y-offset for the 3D effect.
     *
     * @return The 3D effect.
     */
public double getYOffset() {
  return this.yOffset;
}

/**
     * Sets the x-offset and sends a {@link RendererChangeEvent} to all
     * registered listeners.
     *
     * @param xOffset  the x-offset.
     *
     * @see #getXOffset()
     */
/**
     * Sets the x-offset and sends a {@link RendererChangeEvent} to all 
     * registered listeners.
     * 
     * @param xOffset  the x-offset.
     */
public void setXOffset(double xOffset) {
  this.xOffset = xOffset;
  fireChangeEvent();
}

/**
     * Sets the y-offset and sends a {@link RendererChangeEvent} to all
     * registered listeners.
     *
     * @param yOffset  the y-offset.
     *
     * @see #getYOffset()
     */
/**
     * Sets the y-offset and sends a {@link RendererChangeEvent} to all 
     * registered listeners.
     * 
     * @param yOffset  the y-offset.
     */
public void setYOffset(double yOffset) {
  this.yOffset = yOffset;
  fireChangeEvent();
}

/**
     * Returns the paint used to highlight the left and bottom wall in the plot
     * background.
     *
     * @return The paint.
     *
     * @see #setWallPaint(Paint)
     */
/**
     * Returns the paint used to highlight the left and bottom wall in the plot
     * background.
     *
     * @return The paint.
     */
public Paint getWallPaint() {
  return this.wallPaint;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None