CloneSet438


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
15320.953method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
115126
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/NumberTickUnit.java
215159
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/CompositeTitle.java
315168
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/gantt/TaskSeries.java
Next
Last
Clone Instance
1
Line Count
15
Source Line
126
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/NumberTickUnit.java

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


Next
Previous
Clone Instance
2
Line Count
15
Source Line
159
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/title/CompositeTitle.java

/**
 * Tests this title 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 CompositeTitle)) {
    return false;
  }
  if ( !super.equals(obj)) {
    return false;
  }
  CompositeTitle that = (CompositeTitle) obj;
  if ( !this.container.equals(that.container)) {
    return false;
  }
  return true;
}


First
Previous
Clone Instance
3
Line Count
15
Source Line
168
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/gantt/TaskSeries.java

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


Clone AbstractionParameter Count: 2Parameter Bindings

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

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a9b4880]]
NumberTickUnit 
12[[#1a9b4880]]
CompositeTitle 
13[[#1a9b4880]]
TaskSeries 
21[[#1a9b48a0]]
formatter 
22[[#1a9b48a0]]
container 
23[[#1a9b48a0]]
tasks