CloneSet564


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
20310.989class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
120119
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/MiddlePinNeedle.java
220102
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/ShipNeedle.java
320105
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/WindNeedle.java
Next
Last
Clone Instance
1
Line Count
20
Source Line
119
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/MiddlePinNeedle.java

/**
 * Tests another object for equality with this object.
 *
 * @param object  the object to test.
 *
 * @return A boolean.
 */
public boolean equals(Object object) {
  if (object == null) {
    return false;
  }
  if (object == this ) {
    return true;
  }
  if (super.equals(object) && object instanceof MiddlePinNeedle) {
    return true;
  }
  return false;
}

/**
 * Returns a hash code for this instance.
 * 
 * @return A hash code.
 */
public int hashCode() {
  return super.hashCode();
}


Next
Previous
Clone Instance
2
Line Count
20
Source Line
102
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/ShipNeedle.java

/**
 * Tests another object for equality with this object.
 * 
 * @param object  the object to test.
 * 
 * @return A boolean.
 */
public boolean equals(Object object) {
  if (object == null) {
    return false;
  }
  if (object == this ) {
    return true;
  }
  if (super.equals(object) && object instanceof ShipNeedle) {
    return true;
  }
  return false;
}

/**
 * Returns a hash code for this instance.
 * 
 * @return A hash code.
 */
public int hashCode() {
  return super.hashCode();
}


First
Previous
Clone Instance
3
Line Count
20
Source Line
105
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/WindNeedle.java

/**
 * Tests another object for equality with this object.
 * 
 * @param object  the object to test.
 * 
 * @return A boolean.
 */
public boolean equals(Object object) {
  if (object == null) {
    return false;
  }
  if (object == this ) {
    return true;
  }
  if (super.equals(object) && object instanceof WindNeedle) {
    return true;
  }
  return false;
}

/**
 * Returns a hash code for this instance.
 * 
 * @return A hash code.
 */
public int hashCode() {
  return super.hashCode();
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Tests another object for equality with this object.
     * 
     * @param object  the object to test.
     * 
     * @return A boolean.
     */
/**
     * Tests another object for equality with this object.
     *
     * @param object  the object to test.
     *
     * @return A boolean.
     */
public boolean equals(Object object) {
  if (object == null) {
    return false;
  }
  if (object == this ) {
    return true;
  }
  if (super.equals(object) && object instanceof [[#variable18c4fd20]]) {
    return true;
  }
  return false;
}

/**
     * Returns a hash code for this instance.
     * 
     * @return A hash code.
     */
public int hashCode() {
  return super.hashCode();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18c4fd20]]
MiddlePinNeedle 
12[[#18c4fd20]]
ShipNeedle 
13[[#18c4fd20]]
WindNeedle