Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
29 | 2 | 0 | 1.000 | class_body_declarations[4] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 38 | 309 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/annotations/XYTextAnnotation.java |
2 | 29 | 112 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/DrawableLegendItem.java |
| |||||
/** * Returns the x coordinate for the text anchor point (measured against the * domain axis). * * @return The x coordinate (in data space). * * @see #setX(double) */ public double getX() { return this.x; } /** * Sets the x coordinate for the text anchor point (measured against the * domain axis). * * @param x the x coordinate (in data space). * * @see #getX() */ public void setX(double x) { this.x = x; } /** * Returns the y coordinate for the text anchor point (measured against the * range axis). * * @return The y coordinate (in data space). * * @see #setY(double) */ public double getY() { return this.y; } /** * Sets the y coordinate for the text anchor point (measured against the * range axis). * * @param y the y coordinate. * * @see #getY() */ public void setY(double y) { this.y = y; } |
| |||||
/** * Get the x-coordinate for the item's location. * * @return The x-coordinate for the item's location. */ public double getX() { return this.x; } /** * Set the x-coordinate for the item's location. * * @param x the x-coordinate. */ public void setX(double x) { this.x = x; } /** * Get the y-coordinate for the item's location. * * @return The y-coordinate for the item's location. */ public double getY() { return this.y; } /** * Set the y-coordinate for the item's location. * * @param y the y-coordinate. */ public void setY(double y) { this.y = y; } |
| |||
/** * Get the x-coordinate for the item's location. * * @return The x-coordinate for the item's location. */ /** * Returns the x coordinate for the text anchor point (measured against the * domain axis). * * @return The x coordinate (in data space). * * @see #setX(double) */ public double getX() { return this.x; } /** * Set the x-coordinate for the item's location. * * @param x the x-coordinate. */ /** * Sets the x coordinate for the text anchor point (measured against the * domain axis). * * @param x the x coordinate (in data space). * * @see #getX() */ public void setX(double x) { this.x = x; } /** * Get the y-coordinate for the item's location. * * @return The y-coordinate for the item's location. */ /** * Returns the y coordinate for the text anchor point (measured against the * range axis). * * @return The y coordinate (in data space). * * @see #setY(double) */ public double getY() { return this.y; } /** * Set the y-coordinate for the item's location. * * @param y the y-coordinate. */ /** * Sets the y coordinate for the text anchor point (measured against the * range axis). * * @param y the y coordinate. * * @see #getY() */ public void setY(double y) { this.y = y; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |