CloneSet413


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
32310.991class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
132117
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/PinNeedle.java
232105
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/PlumNeedle.java
332126
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/PointerNeedle.java
Next
Last
Clone Instance
1
Line Count
32
Source Line
117
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/PinNeedle.java

/**
 * Tests another object for equality with this object.
 * 
 * @param obj  the object to test (<code>null</code> permitted).
 * 
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (obj == this ) {
    return true;
  }
  if ( !(obj instanceof PinNeedle)) {
    return false;
  }
  if ( !super.equals(obj)) {
    return false;
  }
  return true;
}

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

/**
 * Returns a clone of this needle.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if the <code>PinNeedle</code> 
 *     cannot be cloned (in theory, this should not happen).
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}


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

/**
 * Tests another object for equality with this object.
 * 
 * @param obj  the object to test (<code>null</code> permitted).
 * 
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (obj == this ) {
    return true;
  }
  if ( !(obj instanceof PlumNeedle)) {
    return false;
  }
  if ( !super.equals(obj)) {
    return false;
  }
  return true;
}

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

/**
 * Returns a clone of this needle.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if the <code>PlumNeedle</code> 
 *     cannot be cloned (in theory, this should not happen).
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}


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

/**
 * Tests another object for equality with this object.
 * 
 * @param obj  the object to test (<code>null</code> permitted).
 * 
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (obj == this ) {
    return true;
  }
  if ( !(obj instanceof PointerNeedle)) {
    return false;
  }
  if ( !super.equals(obj)) {
    return false;
  }
  return true;
}

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

/**
 * Returns a clone of this needle.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if the <code>PointerNeedle</code> 
 *     cannot be cloned (in theory, this should not happen).
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}


Clone AbstractionParameter Count: 1Parameter Bindings

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

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

/**
     * Returns a clone of this needle.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException if the <code>PointerNeedle</code> 
     *     cannot be cloned (in theory, this should not happen).
     */
/**
     * Returns a clone of this needle.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException if the <code>PlumNeedle</code> 
     *     cannot be cloned (in theory, this should not happen).
     */
/**
     * Returns a clone of this needle.
     * 
     * @return A clone.
     * 
     * @throws CloneNotSupportedException if the <code>PinNeedle</code> 
     *     cannot be cloned (in theory, this should not happen).
     */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a9982e0]]
PinNeedle 
12[[#1a9982e0]]
PlumNeedle 
13[[#1a9982e0]]
PointerNeedle