Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
16 | 2 | 0 | 1.000 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 16 | 305 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer.java |
2 | 18 | 209 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer2.java |
| |||||
/** * Returns the shape used to represent an area in the legend. * * @return The legend area (never <code>null</code>). */ public Shape getLegendArea() { return this.legendArea; } /** * Sets the shape used as an area in each legend item and sends a * {@link RendererChangeEvent} to all registered listeners. * * @param area the area (<code>null</code> not permitted). */ public void setLegendArea(Shape area) { if (area == null) { throw new IllegalArgumentException("Null \'area\' argument."); } this.legendArea = area; fireChangeEvent(); } |
| |||||
/** * Returns the shape used to represent an area in the legend. * * @return The legend area (never <code>null</code>). * * @see #setLegendArea(Shape) */ public Shape getLegendArea() { return this.legendArea; } /** * Sets the shape used as an area in each legend item and sends a * {@link RendererChangeEvent} to all registered listeners. * * @param area the area (<code>null</code> not permitted). * * @see #getLegendArea() */ public void setLegendArea(Shape area) { if (area == null) { throw new IllegalArgumentException("Null \'area\' argument."); } this.legendArea = area; fireChangeEvent(); } |
| |||
/** * Returns the shape used to represent an area in the legend. * * @return The legend area (never <code>null</code>). */ /** * Returns the shape used to represent an area in the legend. * * @return The legend area (never <code>null</code>). * * @see #setLegendArea(Shape) */ public Shape getLegendArea() { return this.legendArea; } /** * Sets the shape used as an area in each legend item and sends a * {@link RendererChangeEvent} to all registered listeners. * * @param area the area (<code>null</code> not permitted). */ /** * Sets the shape used as an area in each legend item and sends a * {@link RendererChangeEvent} to all registered listeners. * * @param area the area (<code>null</code> not permitted). * * @see #getLegendArea() */ public void setLegendArea(Shape area) { if (area == null) { throw new IllegalArgumentException("Null \'area\' argument."); } this.legendArea = area; fireChangeEvent(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |