CloneSet762


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
18301.000class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
118618
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java
218266
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYDifferenceRenderer.java
318400
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.java
Next
Last
Clone Instance
1
Line Count
18
Source Line
618
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java

/**
 * Returns the shape used to represent a line in the legend.
 *
 * @return The legend line (never <code>null</code>).
 *
 * @see #setLegendLine(Shape)
 */
public Shape getLegendLine() {
  return this.legendLine;
}

/**
 * Sets the shape used as a line in each legend item and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param line  the line (<code>null</code> not permitted).
 *
 * @see #getLegendLine()
 */
public void setLegendLine(Shape line) {
  if (line == null) {
    throw new IllegalArgumentException("Null \'line\' argument.");
  }
  this.legendLine = line;
  fireChangeEvent();
}


Next
Previous
Clone Instance
2
Line Count
18
Source Line
266
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYDifferenceRenderer.java

/**
 * Returns the shape used to represent a line in the legend.
 * 
 * @return The legend line (never <code>null</code>).
 * 
 * @see #setLegendLine(Shape)
 */
public Shape getLegendLine() {
  return this.legendLine;
}

/**
 * Sets the shape used as a line in each legend item and sends a 
 * {@link RendererChangeEvent} to all registered listeners.
 * 
 * @param line  the line (<code>null</code> not permitted).
 * 
 * @see #getLegendLine()
 */
public void setLegendLine(Shape line) {
  if (line == null) {
    throw new IllegalArgumentException("Null \'line\' argument.");
  }
  this.legendLine = line;
  fireChangeEvent();
}


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

/**
 * Returns the shape used to represent a line in the legend.
 *
 * @return The legend line (never <code>null</code>).
 *
 * @see #setLegendLine(Shape)
 */
public Shape getLegendLine() {
  return this.legendLine;
}

/**
 * Sets the shape used as a line in each legend item and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param line  the line (<code>null</code> not permitted).
 *
 * @see #getLegendLine()
 */
public void setLegendLine(Shape line) {
  if (line == null) {
    throw new IllegalArgumentException("Null \'line\' argument.");
  }
  this.legendLine = line;
  fireChangeEvent();
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Returns the shape used to represent a line in the legend.
     * 
     * @return The legend line (never <code>null</code>).
     * 
     * @see #setLegendLine(Shape)
     */
/**
     * Returns the shape used to represent a line in the legend.
     *
     * @return The legend line (never <code>null</code>).
     *
     * @see #setLegendLine(Shape)
     */
public Shape getLegendLine() {
  return this.legendLine;
}

/**
     * Sets the shape used as a line in each legend item and sends a 
     * {@link RendererChangeEvent} to all registered listeners.
     * 
     * @param line  the line (<code>null</code> not permitted).
     * 
     * @see #getLegendLine()
     */
/**
     * Sets the shape used as a line in each legend item and sends a
     * {@link RendererChangeEvent} to all registered listeners.
     *
     * @param line  the line (<code>null</code> not permitted).
     *
     * @see #getLegendLine()
     */
public void setLegendLine(Shape line) {
  if (line == null) {
    throw new IllegalArgumentException("Null \'line\' argument.");
  }
  this.legendLine = line;
  fireChangeEvent();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None