Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 2 | 1 | 0.981 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 177 | plugins/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/typesets/ArraySuperTypeSet.java |
2 | 8 | 194 | plugins/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/typesets/ArrayTypeSet.java |
| ||||
/* (non-Javadoc) * @see org.eclipse.jdt.internal.corext.refactoring.typeconstraints.typesets.ArrayTypeSet#equals(java.lang.Object) */ public boolean equals(Object obj) { if (obj == this ) return true; if (obj instanceof ArraySuperTypeSet) { ArraySuperTypeSet other = (ArraySuperTypeSet) obj; return fElemTypeSet.equals(other.fElemTypeSet); } return false; } |
| ||||
/* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ public boolean equals(Object obj) { if (obj == this ) return true; if (obj instanceof ArrayTypeSet) { ArrayTypeSet other = (ArrayTypeSet) obj; return fElemTypeSet.equals(other.fElemTypeSet); } return false; } |
| |||
/* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ /* (non-Javadoc) * @see org.eclipse.jdt.internal.corext.refactoring.typeconstraints.typesets.ArrayTypeSet#equals(java.lang.Object) */ public boolean equals(Object obj) { if (obj == this ) return true; if (obj instanceof [[#variable63c4a3a0]]) { [[#variable63c4a3a0]] other = ( [[#variable63c4a3a0]]) obj; return fElemTypeSet.equals(other.fElemTypeSet); } return false; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#63c4a3a0]] | ArrayTypeSet |
1 | 2 | [[#63c4a3a0]] | ArraySuperTypeSet |