| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 15 | 31 | 2 | 0.985 | class_body_declarations[2] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 15 | 973 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 2 | 15 | 993 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 3 | 15 | 1013 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 4 | 15 | 1033 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 5 | 15 | 1060 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 6 | 15 | 1080 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 7 | 15 | 1100 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 8 | 15 | 1120 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 9 | 15 | 1140 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 10 | 15 | 1160 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 11 | 15 | 1180 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 12 | 15 | 1200 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 13 | 15 | 1220 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 14 | 15 | 1240 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 15 | 15 | 1260 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 16 | 15 | 1280 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 17 | 15 | 1299 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 18 | 15 | 1346 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 19 | 15 | 1394 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 20 | 15 | 1414 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 21 | 15 | 1434 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 22 | 15 | 1454 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 23 | 15 | 1490 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 24 | 15 | 1527 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 25 | 15 | 1547 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 26 | 15 | 1567 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 27 | 15 | 1587 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 28 | 15 | 1621 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 29 | 15 | 1662 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 30 | 15 | 1689 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| 31 | 15 | 1709 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/SourceBasedSourceGenerator.java |
| ||||
/**
* @see ASTVisitor#visit(AnonymousClassDeclaration)
*/
public boolean visit(AnonymousClassDeclaration node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(ArrayAccess)
*/
public boolean visit(ArrayAccess node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ArrayCreation)
*/
public boolean visit(ArrayCreation node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(ArrayInitializer)
*/
public boolean visit(ArrayInitializer node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ArrayType)
*/
public boolean visit(ArrayType node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(AssertStatement)
*/
public boolean visit(AssertStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(Assignment)
*/
public boolean visit(Assignment node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(Block)
*/
public boolean visit(Block node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(BooleanLiteral)
*/
public boolean visit(BooleanLiteral node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(BreakStatement)
*/
public boolean visit(BreakStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(CastExpression)
*/
public boolean visit(CastExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(CatchClause)
*/
public boolean visit(CatchClause node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(CharacterLiteral)
*/
public boolean visit(CharacterLiteral node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(ClassInstanceCreation)
*/
public boolean visit(ClassInstanceCreation node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(CompilationUnit)
*/
public boolean visit(CompilationUnit node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(ConditionalExpression)
*/
public boolean visit(ConditionalExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ConstructorInvocation)
*/
public boolean visit(ConstructorInvocation node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(ContinueStatement)
*/
public boolean visit(ContinueStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(DoStatement)
*/
public boolean visit(DoStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(EmptyStatement)
*/
public boolean visit(EmptyStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.EnhancedForStatement)
*/
public boolean visit(EnhancedForStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.EnumConstantDeclaration)
*/
public boolean visit(EnumConstantDeclaration node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.EnumDeclaration)
*/
public boolean visit(EnumDeclaration node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(ExpressionStatement)
*/
public boolean visit(ExpressionStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(FieldAccess)
*/
public boolean visit(FieldAccess node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(FieldDeclaration)
*/
public boolean visit(FieldDeclaration node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ForStatement)
*/
public boolean visit(ForStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(IfStatement)
*/
public boolean visit(IfStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ImportDeclaration)
*/
public boolean visit(ImportDeclaration node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(InfixExpression)
*/
public boolean visit(InfixExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(Initializer)
*/
public boolean visit(Initializer node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.InstanceofExpression)
*/
public boolean visit(InstanceofExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(Javadoc)
*/
public boolean visit(Javadoc node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(LabeledStatement)
*/
public boolean visit(LabeledStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(MethodDeclaration)
*/
public boolean visit(MethodDeclaration node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(MethodInvocation)
*/
public boolean visit(MethodInvocation node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(NullLiteral)
*/
public boolean visit(NullLiteral node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(NumberLiteral)
*/
public boolean visit(NumberLiteral node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(PackageDeclaration)
*/
public boolean visit(PackageDeclaration node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.ParameterizedType)
*/
public boolean visit(ParameterizedType node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ParenthesizedExpression)
*/
public boolean visit(ParenthesizedExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(PostfixExpression)
*/
public boolean visit(PostfixExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(PrefixExpression)
*/
public boolean visit(PrefixExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(PrimitiveType)
*/
public boolean visit(PrimitiveType node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ReturnStatement)
*/
public boolean visit(ReturnStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(SimpleName)
*/
public boolean visit(SimpleName node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(SingleVariableDeclaration)
*/
public boolean visit(SingleVariableDeclaration node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(StringLiteral)
*/
public boolean visit(StringLiteral node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(SuperConstructorInvocation)
*/
public boolean visit(SuperConstructorInvocation node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(SuperFieldAccess)
*/
public boolean visit(SuperFieldAccess node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(SuperMethodInvocation)
*/
public boolean visit(SuperMethodInvocation node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(SwitchCase)
*/
public boolean visit(SwitchCase node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(SwitchStatement)
*/
public boolean visit(SwitchStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(SynchronizedStatement)
*/
public boolean visit(SynchronizedStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ThisExpression)
*/
public boolean visit(ThisExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(ThrowStatement)
*/
public boolean visit(ThrowStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(TypeDeclarationStatement)
*/
public boolean visit(TypeDeclarationStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(TypeLiteral)
*/
public boolean visit(TypeLiteral node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(VariableDeclarationExpression)
*/
public boolean visit(VariableDeclarationExpression node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(VariableDeclarationFragment)
*/
public boolean visit(VariableDeclarationFragment node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(VariableDeclarationStatement)
*/
public boolean visit(VariableDeclarationStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(WhileStatement)
*/
public boolean visit(WhileStatement node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| |||
/**
* @see ASTVisitor#visit(AnonymousClassDeclaration)
*/
/**
* @see ASTVisitor#visit(ArrayCreation)
*/
/**
* @see ASTVisitor#visit(ArrayType)
*/
/**
* @see ASTVisitor#visit(Assignment)
*/
/**
* @see ASTVisitor#visit(BooleanLiteral)
*/
/**
* @see ASTVisitor#visit(CastExpression)
*/
/**
* @see ASTVisitor#visit(CharacterLiteral)
*/
/**
* @see ASTVisitor#visit(CompilationUnit)
*/
/**
* @see ASTVisitor#visit(ConstructorInvocation)
*/
/**
* @see ASTVisitor#visit(DoStatement)
*/
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.EnhancedForStatement)
*/
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.EnumDeclaration)
*/
/**
* @see ASTVisitor#visit(FieldAccess)
*/
/**
* @see ASTVisitor#visit(ForStatement)
*/
/**
* @see ASTVisitor#visit(ImportDeclaration)
*/
/**
* @see ASTVisitor#visit(Initializer)
*/
/**
* @see ASTVisitor#visit(Javadoc)
*/
/**
* @see ASTVisitor#visit(MethodDeclaration)
*/
/**
* @see ASTVisitor#visit(NullLiteral)
*/
/**
* @see ASTVisitor#visit(PackageDeclaration)
*/
/**
* @see ASTVisitor#visit(ParenthesizedExpression)
*/
/**
* @see ASTVisitor#visit(PrefixExpression)
*/
/**
* @see ASTVisitor#visit(ReturnStatement)
*/
/**
* @see ASTVisitor#visit(SingleVariableDeclaration)
*/
/**
* @see ASTVisitor#visit(SuperConstructorInvocation)
*/
/**
* @see ASTVisitor#visit(SuperMethodInvocation)
*/
/**
* @see ASTVisitor#visit(SwitchStatement)
*/
/**
* @see ASTVisitor#visit(ThisExpression)
*/
/**
* @see ASTVisitor#visit(TypeDeclarationStatement)
*/
/**
* @see ASTVisitor#visit(VariableDeclarationExpression)
*/
/**
* @see ASTVisitor#visit(VariableDeclarationStatement)
*/
public boolean visit( [[#variablec06d6300]] node) {
if (rightTypeFound()) {
return false;
}
return true;
}
/**
* @see ASTVisitor#visit(ArrayAccess)
*/
/**
* @see ASTVisitor#visit(ArrayInitializer)
*/
/**
* @see ASTVisitor#visit(AssertStatement)
*/
/**
* @see ASTVisitor#visit(Block)
*/
/**
* @see ASTVisitor#visit(BreakStatement)
*/
/**
* @see ASTVisitor#visit(CatchClause)
*/
/**
* @see ASTVisitor#visit(ClassInstanceCreation)
*/
/**
* @see ASTVisitor#visit(ConditionalExpression)
*/
/**
* @see ASTVisitor#visit(ContinueStatement)
*/
/**
* @see ASTVisitor#visit(EmptyStatement)
*/
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.EnumConstantDeclaration)
*/
/**
* @see ASTVisitor#visit(ExpressionStatement)
*/
/**
* @see ASTVisitor#visit(FieldDeclaration)
*/
/**
* @see ASTVisitor#visit(IfStatement)
*/
/**
* @see ASTVisitor#visit(InfixExpression)
*/
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.InstanceofExpression)
*/
/**
* @see ASTVisitor#visit(LabeledStatement)
*/
/**
* @see ASTVisitor#visit(MethodInvocation)
*/
/**
* @see ASTVisitor#visit(NumberLiteral)
*/
/* (non-Javadoc)
* @see org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.ParameterizedType)
*/
/**
* @see ASTVisitor#visit(PostfixExpression)
*/
/**
* @see ASTVisitor#visit(PrimitiveType)
*/
/**
* @see ASTVisitor#visit(SimpleName)
*/
/**
* @see ASTVisitor#visit(StringLiteral)
*/
/**
* @see ASTVisitor#visit(SuperFieldAccess)
*/
/**
* @see ASTVisitor#visit(SwitchCase)
*/
/**
* @see ASTVisitor#visit(SynchronizedStatement)
*/
/**
* @see ASTVisitor#visit(ThrowStatement)
*/
/**
* @see ASTVisitor#visit(TypeLiteral)
*/
/**
* @see ASTVisitor#visit(VariableDeclarationFragment)
*/
/**
* @see ASTVisitor#visit(WhileStatement)
*/
public boolean visit( [[#variablec06d63a0]] node) {
if (rightTypeFound()) {
return false;
}
return true;
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#c06d6300]] | AnonymousClassDeclaration |
| 1 | 2 | [[#c06d6300]] | ArrayCreation |
| 1 | 3 | [[#c06d6300]] | ArrayType |
| 1 | 4 | [[#c06d6300]] | Assignment |
| 1 | 5 | [[#c06d6300]] | BooleanLiteral |
| 1 | 6 | [[#c06d6300]] | CastExpression |
| 1 | 7 | [[#c06d6300]] | CharacterLiteral |
| 1 | 8 | [[#c06d6300]] | CompilationUnit |
| 1 | 9 | [[#c06d6300]] | ConstructorInvocation |
| 1 | 10 | [[#c06d6300]] | DoStatement |
| 1 | 11 | [[#c06d6300]] | EnhancedForStatement |
| 1 | 12 | [[#c06d6300]] | EnumDeclaration |
| 1 | 13 | [[#c06d6300]] | FieldAccess |
| 1 | 14 | [[#c06d6300]] | ForStatement |
| 1 | 15 | [[#c06d6300]] | ImportDeclaration |
| 1 | 16 | [[#c06d6300]] | Initializer |
| 1 | 17 | [[#c06d6300]] | Javadoc |
| 1 | 18 | [[#c06d6300]] | MethodDeclaration |
| 1 | 19 | [[#c06d6300]] | NullLiteral |
| 1 | 20 | [[#c06d6300]] | PackageDeclaration |
| 1 | 21 | [[#c06d6300]] | ParenthesizedExpression |
| 1 | 22 | [[#c06d6300]] | PrefixExpression |
| 1 | 23 | [[#c06d6300]] | ReturnStatement |
| 1 | 24 | [[#c06d6300]] | SingleVariableDeclaration |
| 1 | 25 | [[#c06d6300]] | SuperConstructorInvocation |
| 1 | 26 | [[#c06d6300]] | SuperMethodInvocation |
| 1 | 27 | [[#c06d6300]] | SwitchStatement |
| 1 | 28 | [[#c06d6300]] | ThisExpression |
| 1 | 29 | [[#c06d6300]] | TypeDeclarationStatement |
| 1 | 30 | [[#c06d6300]] | VariableDeclarationExpression |
| 1 | 31 | [[#c06d6300]] | VariableDeclarationStatement |
| 2 | 1 | [[#c06d63a0]] | ArrayAccess |
| 2 | 2 | [[#c06d63a0]] | ArrayInitializer |
| 2 | 3 | [[#c06d63a0]] | AssertStatement |
| 2 | 4 | [[#c06d63a0]] | Block |
| 2 | 5 | [[#c06d63a0]] | BreakStatement |
| 2 | 6 | [[#c06d63a0]] | CatchClause |
| 2 | 7 | [[#c06d63a0]] | ClassInstanceCreation |
| 2 | 8 | [[#c06d63a0]] | ConditionalExpression |
| 2 | 9 | [[#c06d63a0]] | ContinueStatement |
| 2 | 10 | [[#c06d63a0]] | EmptyStatement |
| 2 | 11 | [[#c06d63a0]] | EnumConstantDeclaration |
| 2 | 12 | [[#c06d63a0]] | ExpressionStatement |
| 2 | 13 | [[#c06d63a0]] | FieldDeclaration |
| 2 | 14 | [[#c06d63a0]] | IfStatement |
| 2 | 15 | [[#c06d63a0]] | InfixExpression |
| 2 | 16 | [[#c06d63a0]] | InstanceofExpression |
| 2 | 17 | [[#c06d63a0]] | LabeledStatement |
| 2 | 18 | [[#c06d63a0]] | MethodInvocation |
| 2 | 19 | [[#c06d63a0]] | NumberLiteral |
| 2 | 20 | [[#c06d63a0]] | ParameterizedType |
| 2 | 21 | [[#c06d63a0]] | PostfixExpression |
| 2 | 22 | [[#c06d63a0]] | PrimitiveType |
| 2 | 23 | [[#c06d63a0]] | SimpleName |
| 2 | 24 | [[#c06d63a0]] | StringLiteral |
| 2 | 25 | [[#c06d63a0]] | SuperFieldAccess |
| 2 | 26 | [[#c06d63a0]] | SwitchCase |
| 2 | 27 | [[#c06d63a0]] | SynchronizedStatement |
| 2 | 28 | [[#c06d63a0]] | ThrowStatement |
| 2 | 29 | [[#c06d63a0]] | TypeLiteral |
| 2 | 30 | [[#c06d63a0]] | VariableDeclarationFragment |
| 2 | 31 | [[#c06d63a0]] | WhileStatement |