CloneSet782


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12220.950method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
112317
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/AreaRenderer.java
212350
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/GroupedStackedBarRenderer.java
Next
Last
Clone Instance
1
Line Count
12
Source Line
317
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/AreaRenderer.java

/**
 * Tests this instance for equality with an arbitrary 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 AreaRenderer)) {
    return false;
  }
  AreaRenderer that = (AreaRenderer) obj;
  if ( !this.endType.equals(that.endType)) {
    return false;
  }
  return super.equals(obj);
}


First
Previous
Clone Instance
2
Line Count
12
Source Line
350
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/GroupedStackedBarRenderer.java

/**
 * Tests this renderer 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 GroupedStackedBarRenderer)) {
    return false;
  }
  GroupedStackedBarRenderer that = (GroupedStackedBarRenderer) obj;
  if ( !this.seriesToGroupMap.equals(that.seriesToGroupMap)) {
    return false;
  }
  return super.equals(obj);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Tests this instance for equality with an arbitrary object.
     *
     * @param obj  the object to test (<code>null</code> permitted).
     *
     * @return A boolean.
     */
/**
     * Tests this renderer 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 [[#variable18d5c720]])) {
    return false;
  }
   [[#variable18d5c720]] that = ( [[#variable18d5c720]]) obj;
  if ( !this. [[#variable18d5c6c0]].equals(that. [[#variable18d5c6c0]])) {
    return false;
  }
  return super.equals(obj);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18d5c720]]
AreaRenderer 
12[[#18d5c720]]
GroupedStackedBarRenderer 
21[[#18d5c6c0]]
endType 
22[[#18d5c6c0]]
seriesToGroupMap