Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 8 | 3 | 0.962 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 88 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/JavadocArgumentExpression.java |
2 | 8 | 130 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/JavadocFieldReference.java |
3 | 7 | 222 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/MemberValuePair.java |
4 | 7 | 230 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/MemberValuePair.java |
5 | 7 | 54 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/SingleMemberAnnotation.java |
6 | 7 | 62 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/SingleMemberAnnotation.java |
7 | 7 | 96 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/Wildcard.java |
8 | 7 | 105 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/Wildcard.java |
| ||||
/* (non-Javadoc) * Redefine to capture javadoc specific signatures * @see org.eclipse.jdt.internal.compiler.ast.ASTNode#traverse(org.eclipse.jdt.internal.compiler.ASTVisitor, org.eclipse.jdt.internal.compiler.lookup.BlockScope) */ public void traverse(ASTVisitor visitor, BlockScope blockScope) { if (visitor.visit(this, blockScope)) { if (this.argument != null) { this.argument.traverse(visitor, blockScope); } } visitor.endVisit(this, blockScope); } |
| ||||
/* (non-Javadoc) * Redefine to capture javadoc specific signatures * @see org.eclipse.jdt.internal.compiler.ast.ASTNode#traverse(org.eclipse.jdt.internal.compiler.ASTVisitor, org.eclipse.jdt.internal.compiler.lookup.BlockScope) */ public void traverse(ASTVisitor visitor, BlockScope scope) { if (visitor.visit(this, scope)) { if (this.receiver != null) { this.receiver.traverse(visitor, scope); } } visitor.endVisit(this, scope); } |
| ||||
public void traverse(ASTVisitor visitor, BlockScope scope) { if (visitor.visit(this, scope)) { if (this.value != null) { this.value.traverse(visitor, scope); } } visitor.endVisit(this, scope); } |
| ||||
public void traverse(ASTVisitor visitor, CompilationUnitScope scope) { if (visitor.visit(this, scope)) { if (this.value != null) { this.value.traverse(visitor, scope); } } visitor.endVisit(this, scope); } |
| ||||
public void traverse(ASTVisitor visitor, BlockScope scope) { if (visitor.visit(this, scope)) { if (this.memberValue != null) { this.memberValue.traverse(visitor, scope); } } visitor.endVisit(this, scope); } |
| ||||
public void traverse(ASTVisitor visitor, CompilationUnitScope scope) { if (visitor.visit(this, scope)) { if (this.memberValue != null) { this.memberValue.traverse(visitor, scope); } } visitor.endVisit(this, scope); } |
| ||||
public void traverse(ASTVisitor visitor, BlockScope scope) { if (visitor.visit(this, scope)) { if (this.bound != null) { this.bound.traverse(visitor, scope); } } visitor.endVisit(this, scope); } |
| ||||
public void traverse(ASTVisitor visitor, ClassScope scope) { if (visitor.visit(this, scope)) { if (this.bound != null) { this.bound.traverse(visitor, scope); } } visitor.endVisit(this, scope); } |
| |||
/* (non-Javadoc) * Redefine to capture javadoc specific signatures * @see org.eclipse.jdt.internal.compiler.ast.ASTNode#traverse(org.eclipse.jdt.internal.compiler.ASTVisitor, org.eclipse.jdt.internal.compiler.lookup.BlockScope) */ public void traverse(ASTVisitor visitor, [[#variablebcc446c0]] [[#variable61aaae60]]) { if (visitor.visit(this, [[#variable61aaae60]])) { if (this. [[#variable61aab080]]!= null) { this. [[#variable61aab080]].traverse(visitor, [[#variable61aaae60]]); } } visitor.endVisit(this, [[#variable61aaae60]]); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#bcc446c0]] | BlockScope |
1 | 2 | [[#bcc446c0]] | ClassScope |
1 | 3 | [[#bcc446c0]] | BlockScope |
1 | 4 | [[#bcc446c0]] | CompilationUnitScope |
1 | 5 | [[#bcc446c0]] | BlockScope |
1 | 6 | [[#bcc446c0]] | CompilationUnitScope |
1 | 7 | [[#bcc446c0]] | BlockScope |
1 | 8 | [[#bcc446c0]] | BlockScope |
2 | 1 | [[#61aaae60]] | scope |
2 | 2 | [[#61aaae60]] | scope |
2 | 3 | [[#61aaae60]] | scope |
2 | 4 | [[#61aaae60]] | scope |
2 | 5 | [[#61aaae60]] | scope |
2 | 6 | [[#61aaae60]] | scope |
2 | 7 | [[#61aaae60]] | scope |
2 | 8 | [[#61aaae60]] | blockScope |
3 | 1 | [[#61aab080]] | bound |
3 | 2 | [[#61aab080]] | bound |
3 | 3 | [[#61aab080]] | memberValue |
3 | 4 | [[#61aab080]] | memberValue |
3 | 5 | [[#61aab080]] | value |
3 | 6 | [[#61aab080]] | value |
3 | 7 | [[#61aab080]] | receiver |
3 | 8 | [[#61aab080]] | argument |