CloneSet4416


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6210.981class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16267
plugins/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/typesets/TypeSetIntersection.java
2676
plugins/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/typesets/TypeSetUnion.java
Clone Instance
1
Line Count
6
Source Line
267
Source File
plugins/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/typesets/TypeSetIntersection.java

        /* (non-Javadoc)
         * @see java.lang.Object#equals(java.lang.Object)
         */
        public boolean equals(Object o) {
                if (o instanceof TypeSetIntersection) {
                        TypeSetIntersection other = (TypeSetIntersection) o;
                        return other.fLHS.equals(fLHS) && other.fRHS.equals(fRHS);
                }
                else    return false;
        }


Clone Instance
2
Line Count
6
Source Line
76
Source File
plugins/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/typesets/TypeSetUnion.java

        /* (non-Javadoc)
         * @see java.lang.Object#equals(java.lang.Object)
         */
        public boolean equals(Object o) {
                if (o instanceof TypeSetUnion) {
                        TypeSetUnion other = (TypeSetUnion) o;
                        return other.fLHS.equals(fLHS) && other.fRHS.equals(fRHS);
                }
                else    return false;
        }


Clone AbstractionParameter Count: 1Parameter Bindings

/* (non-Javadoc)
         * @see java.lang.Object#equals(java.lang.Object)
         */
public boolean equals(Object o) {
  if (o instanceof [[#variable61049600]]) {
     [[#variable61049600]] other = ( [[#variable61049600]]) o;
    return other.fLHS.equals(fLHS) && other.fRHS.equals(fRHS);
  }
  else
    return false;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#61049600]]
TypeSetUnion 
12[[#61049600]]
TypeSetIntersection