Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 2 | 1 | 0.972 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 15 | 243 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java |
2 | 11 | 257 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/AbstractXYItemRenderer.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; } |
| |||||
/** * 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; } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a1269a0]] | CategoryPlot |
1 | 2 | [[#1a1269a0]] | XYPlot |