Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 4 | 2 | 0.984 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 968 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java |
2 | 6 | 1040 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java |
3 | 6 | 1141 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java |
4 | 6 | 1152 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java |
| ||||
/* * @see ITypeBinding#isAnonymous() */ public boolean isAnonymous() { if (isClass() || isInterface() || isEnum()) { ReferenceBinding referenceBinding = (ReferenceBinding) this.binding; return referenceBinding.isAnonymousType(); } return false; } |
| ||||
/* * @see IBinding#isDeprecated() */ public boolean isDeprecated() { if (isClass() || isInterface() || isEnum()) { ReferenceBinding referenceBinding = (ReferenceBinding) this.binding; return referenceBinding.isDeprecated(); } return false; } |
| ||||
/* * @see ITypeBinding#isMember() */ public boolean isMember() { if (isClass() || isInterface() || isEnum()) { ReferenceBinding referenceBinding = (ReferenceBinding) this.binding; return referenceBinding.isMemberType(); } return false; } |
| ||||
/* * @see ITypeBinding#isNested() */ public boolean isNested() { if (isClass() || isInterface() || isEnum()) { ReferenceBinding referenceBinding = (ReferenceBinding) this.binding; return referenceBinding.isNestedType(); } return false; } |
| |||
/* * @see ITypeBinding#isAnonymous() */ /* * @see IBinding#isDeprecated() */ /* * @see ITypeBinding#isMember() */ /* * @see ITypeBinding#isNested() */ public boolean [[#variable59ef2480]]() { if (isClass() || isInterface() || isEnum()) { ReferenceBinding referenceBinding = (ReferenceBinding) this.binding; return referenceBinding. [[#variable59ef2420]](); } return false; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#59ef2480]] | isAnonymous |
1 | 2 | [[#59ef2480]] | isDeprecated |
1 | 3 | [[#59ef2480]] | isMember |
1 | 4 | [[#59ef2480]] | isNested |
2 | 1 | [[#59ef2420]] | isAnonymousType |
2 | 2 | [[#59ef2420]] | isDeprecated |
2 | 3 | [[#59ef2420]] | isMemberType |
2 | 4 | [[#59ef2420]] | isNestedType |