CloneSet894


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
29201.000class_body_declarations[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
138309
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/annotations/XYTextAnnotation.java
229112
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/DrawableLegendItem.java
Next
Last
Clone Instance
1
Line Count
38
Source Line
309
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/annotations/XYTextAnnotation.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;
}


First
Previous
Clone Instance
2
Line Count
29
Source Line
112
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/DrawableLegendItem.java

/**
 * 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;
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None