CloneSet2166


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11210.972class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
115243
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java
211257
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/AbstractXYItemRenderer.java
Next
Last
Clone Instance
1
Line Count
15
Source Line
243
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java

/**
 * Returns the number of passes through the dataset required by the
 * renderer.  This method returns <code>1</code>, subclasses should
 * override if they need more passes.
 *
 * @return The pass count.
 */
public int getPassCount() {
  return 1;
}

/**
 * Returns the plot that the renderer has been assigned to (where
 * <code>null</code> indicates that the renderer is not currently assigned
 * to a plot).
 *
 * @return The plot (possibly <code>null</code>).
 *
 * @see #setPlot(CategoryPlot)
 */
public CategoryPlot getPlot() {
  return this.plot;
}


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

/**
 * Returns the number of passes through the data that the renderer requires
 * in order to draw the chart.  Most charts will require a single pass, but
 * some require two passes.
 *
 * @return The pass count.
 */
public int getPassCount() {
  return 1;
}

/**
 * Returns the plot that the renderer is assigned to.
 *
 * @return The plot (possibly <code>null</code>).
 */
public XYPlot getPlot() {
  return this.plot;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the number of passes through the data that the renderer requires
     * in order to draw the chart.  Most charts will require a single pass, but
     * some require two passes.
     *
     * @return The pass count.
     */
/**
     * Returns the number of passes through the dataset required by the
     * renderer.  This method returns <code>1</code>, subclasses should
     * override if they need more passes.
     *
     * @return The pass count.
     */
public int getPassCount() {
  return 1;
}

/**
     * Returns the plot that the renderer is assigned to.
     *
     * @return The plot (possibly <code>null</code>).
     */
/**
     * Returns the plot that the renderer has been assigned to (where
     * <code>null</code> indicates that the renderer is not currently assigned
     * to a plot).
     *
     * @return The plot (possibly <code>null</code>).
     *
     * @see #setPlot(CategoryPlot)
     */
public [[#variable1a1269a0]] getPlot() {
  return this.plot;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a1269a0]]
CategoryPlot 
12[[#1a1269a0]]
XYPlot