CloneSet253


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8810.983method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18157
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/BoxAndWhiskerXYToolTipGenerator.java
28258
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/IntervalXYItemLabelGenerator.java
38138
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryItemLabelGenerator.java
48120
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryToolTipGenerator.java
58193
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYItemLabelGenerator.java
68175
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYToolTipGenerator.java
7899
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/LineNeedle.java
88156
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/LongNeedle.java
Next
Last
Clone Instance
1
Line Count
8
Source Line
157
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/BoxAndWhiskerXYToolTipGenerator.java

/**
 * Tests if this object is equal to another.
 *
 * @param obj  the other object.
 *
 * @return A boolean.
 */
public boolean equals(Object obj) {
  if (obj == this ) {
    return true;
  }
  if ( !(obj instanceof BoxAndWhiskerXYToolTipGenerator)) {
    return false;
  }
  return super.equals(obj);
}


Next
Previous
Clone Instance
2
Line Count
8
Source Line
258
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/IntervalXYItemLabelGenerator.java

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


Next
Previous
Clone Instance
3
Line Count
8
Source Line
138
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryItemLabelGenerator.java

/**
 * Tests this generator for equality with an arbitrary object.
 * 
 * @param obj  the object (<code>null</code> permitted).
 * 
 * @return <code>true</code> if this generator is equal to 
 *     <code>obj</code>, and <code>false</code> otherwise.
 */
public boolean equals(Object obj) {
  if (obj == this ) {
    return true;
  }
  if ( !(obj instanceof StandardCategoryItemLabelGenerator)) {
    return false;
  }
  return super.equals(obj);
}


Next
Previous
Clone Instance
4
Line Count
8
Source Line
120
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryToolTipGenerator.java

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


Next
Previous
Clone Instance
5
Line Count
8
Source Line
193
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYItemLabelGenerator.java

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


Next
Previous
Clone Instance
6
Line Count
8
Source Line
175
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardXYToolTipGenerator.java

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


Next
Previous
Clone Instance
7
Line Count
8
Source Line
99
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/LineNeedle.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 LineNeedle)) {
    return false;
  }
  return super.equals(obj);
}


First
Previous
Clone Instance
8
Line Count
8
Source Line
156
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/needle/LongNeedle.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 LongNeedle)) {
    return false;
  }
  return super.equals(obj);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Tests if this object is equal to another.
     *
     * @param obj  the other object.
     *
     * @return A boolean.
     */
/**
     * Tests this object for equality with an arbitrary object.
     *
     * @param obj  the other object (<code>null</code> permitted).
     *
     * @return A boolean.
     */
/**
     * Tests this generator for equality with an arbitrary object.
     * 
     * @param obj  the object (<code>null</code> permitted).
     * 
     * @return <code>true</code> if this generator is equal to 
     *     <code>obj</code>, and <code>false</code> otherwise.
     */
/**
     * Tests this generator for equality with an arbitrary object.
     * 
     * @param obj  the object (<code>null</code> permitted).
     * 
     * @return A boolean.
     */
/**
     * Tests another object for equality with this object.
     * 
     * @param obj  the object to test (<code>null</code> permitted).
     * 
     * @return A boolean.
     */
/**
     * 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 [[#variable1a8cc0e0]])) {
    return false;
  }
  return super.equals(obj);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a8cc0e0]]
BoxAndWhiskerXYToolTipGenerator 
12[[#1a8cc0e0]]
IntervalXYItemLabelGenerator 
13[[#1a8cc0e0]]
StandardCategoryItemLabelGenerator 
14[[#1a8cc0e0]]
StandardCategoryToolTipGenerator 
15[[#1a8cc0e0]]
StandardXYItemLabelGenerator 
16[[#1a8cc0e0]]
StandardXYToolTipGenerator 
17[[#1a8cc0e0]]
LineNeedle 
18[[#1a8cc0e0]]
LongNeedle