CloneSet166


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
22840.955class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1237
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AnonymousClassDeclaration.java
2261
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ArrayCreation.java
3233
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ArrayInitializer.java
4233
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Block.java
5296
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ClassInstanceCreation.java
6291
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CompilationUnit.java
7246
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ConstructorInvocation.java
8272
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/EnumDeclaration.java
9272
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/FieldDeclaration.java
10249
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ForStatement.java
11263
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ForStatement.java
122200
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
13244
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Javadoc.java
142134
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java
15261
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodInvocation.java
16238
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/NormalAnnotation.java
17250
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PackageDeclaration.java
18245
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ParameterizedType.java
19251
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SingleVariableDeclaration.java
20254
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SuperConstructorInvocation.java
21262
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SuperMethodInvocation.java
22247
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SwitchStatement.java
23249
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java
24242
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TryStatement.java
25257
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationExpression.java
26271
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationExpression.java
27260
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationStatement.java
28274
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationStatement.java
Clone Instance
1
Line Count
2
Source Line
37
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AnonymousClassDeclaration.java

        /**
         * The "bodyDeclarations" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor BODY_DECLARATIONS_PROPERTY =
                new ChildListPropertyDescriptor(AnonymousClassDeclaration.class , "bodyDeclarations", BodyDeclaration.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
2
Line Count
2
Source Line
61
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ArrayCreation.java

        /**
         * The "dimensions" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor DIMENSIONS_PROPERTY =
                new ChildListPropertyDescriptor(ArrayCreation.class , "dimensions", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
3
Line Count
2
Source Line
33
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ArrayInitializer.java

        /**
         * The "expressions" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor EXPRESSIONS_PROPERTY =
                new ChildListPropertyDescriptor(ArrayInitializer.class , "expressions", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
4
Line Count
2
Source Line
33
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Block.java

        /**
         * The "statements" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor STATEMENTS_PROPERTY =
                new ChildListPropertyDescriptor(Block.class , "statements", Statement.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
5
Line Count
2
Source Line
96
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ClassInstanceCreation.java

        /**
         * The "arguments" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor ARGUMENTS_PROPERTY =
                new ChildListPropertyDescriptor(ClassInstanceCreation.class , "arguments", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
6
Line Count
2
Source Line
91
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CompilationUnit.java

        /**
         * The "types" structural property of this node type.
         * 
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor TYPES_PROPERTY =
                new ChildListPropertyDescriptor(CompilationUnit.class , "types", AbstractTypeDeclaration.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
7
Line Count
2
Source Line
46
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ConstructorInvocation.java

        /**
         * The "arguments" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor ARGUMENTS_PROPERTY =
                new ChildListPropertyDescriptor(ConstructorInvocation.class , "arguments", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
8
Line Count
2
Source Line
72
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/EnumDeclaration.java

        /**
         * The "enumConstants" structural property of this node type.
         */
        public static final ChildListPropertyDescriptor ENUM_CONSTANTS_PROPERTY =
                new ChildListPropertyDescriptor(EnumDeclaration.class , "enumConstants", EnumConstantDeclaration.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
9
Line Count
2
Source Line
72
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/FieldDeclaration.java

        /**
         * The "fragments" structural property of this node type).
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor FRAGMENTS_PROPERTY =
                new ChildListPropertyDescriptor(FieldDeclaration.class , "fragments", VariableDeclarationFragment.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
10
Line Count
2
Source Line
49
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ForStatement.java

        /**
         * The "initializers" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor INITIALIZERS_PROPERTY =
                new ChildListPropertyDescriptor(ForStatement.class , "initializers", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
11
Line Count
2
Source Line
63
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ForStatement.java

        /**
         * The "updaters" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor UPDATERS_PROPERTY =
                new ChildListPropertyDescriptor(ForStatement.class , "updaters", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
12
Line Count
2
Source Line
200
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

        /**
         * The "extendedOperands" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor EXTENDED_OPERANDS_PROPERTY =
                new ChildListPropertyDescriptor(InfixExpression.class , "extendedOperands", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
13
Line Count
2
Source Line
44
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Javadoc.java

        /**
         * The "tags" structural property of this node type.
         * @since 3.1
         */
        public static final ChildListPropertyDescriptor TAGS_PROPERTY =
                new ChildListPropertyDescriptor(Javadoc.class , "tags", TagElement.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
14
Line Count
2
Source Line
134
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java

        /**
         * The "parameters" structural property of this node type).
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor PARAMETERS_PROPERTY =
                new ChildListPropertyDescriptor(MethodDeclaration.class , "parameters", SingleVariableDeclaration.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
15
Line Count
2
Source Line
61
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodInvocation.java

        /**
         * The "arguments" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor ARGUMENTS_PROPERTY =
                new ChildListPropertyDescriptor(MethodInvocation.class , "arguments", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
16
Line Count
2
Source Line
38
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/NormalAnnotation.java

        /**
         * The "values" structural property of this node type.
         */
        public static final ChildListPropertyDescriptor VALUES_PROPERTY =
                new ChildListPropertyDescriptor(NormalAnnotation.class , "values", MemberValuePair.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
17
Line Count
2
Source Line
50
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PackageDeclaration.java

        /**
         * The "annotations" structural property of this node type (added in JLS3 API).
         * @since 3.1
         */
        public static final ChildListPropertyDescriptor ANNOTATIONS_PROPERTY =
                new ChildListPropertyDescriptor(PackageDeclaration.class , "annotations", Annotation.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
18
Line Count
2
Source Line
45
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ParameterizedType.java

        /**
         * The "typeArguments" structural property of this node type.
         */
        public static final ChildListPropertyDescriptor TYPE_ARGUMENTS_PROPERTY =
                new ChildListPropertyDescriptor(ParameterizedType.class , "typeArguments", Type.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
19
Line Count
2
Source Line
51
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SingleVariableDeclaration.java

        /**
         * The "modifiers" structural property of this node type (added in JLS3 API).
         * @since 3.1
         */
        public static final ChildListPropertyDescriptor MODIFIERS2_PROPERTY =
                new ChildListPropertyDescriptor(SingleVariableDeclaration.class , "modifiers", IExtendedModifier.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
20
Line Count
2
Source Line
54
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SuperConstructorInvocation.java

        /**
         * The "arguments" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor ARGUMENTS_PROPERTY =
                new ChildListPropertyDescriptor(SuperConstructorInvocation.class , "arguments", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
21
Line Count
2
Source Line
62
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SuperMethodInvocation.java

        /**
         * The "arguments" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor ARGUMENTS_PROPERTY =
                new ChildListPropertyDescriptor(SuperMethodInvocation.class , "arguments", Expression.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
22
Line Count
2
Source Line
47
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SwitchStatement.java

        /**
         * The "statements" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor STATEMENTS_PROPERTY =
                new ChildListPropertyDescriptor(SwitchStatement.class , "statements", Statement.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
23
Line Count
2
Source Line
49
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java

        /**
         * The "fragments" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor FRAGMENTS_PROPERTY =
                new ChildListPropertyDescriptor(TagElement.class , "fragments", IDocElement.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
24
Line Count
2
Source Line
42
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TryStatement.java

        /**
         * The "catchClauses" structural property of this node type.
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor CATCH_CLAUSES_PROPERTY =
                new ChildListPropertyDescriptor(TryStatement.class , "catchClauses", CatchClause.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
25
Line Count
2
Source Line
57
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationExpression.java

        /**
         * The "modifiers" structural property of this node type (added in JLS3 API).
         * @since 3.1
         */
        public static final ChildListPropertyDescriptor MODIFIERS2_PROPERTY =
                new ChildListPropertyDescriptor(VariableDeclarationExpression.class , "modifiers", IExtendedModifier.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
26
Line Count
2
Source Line
71
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationExpression.java

        /**
         * The "fragments" structural property of this node type).
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor FRAGMENTS_PROPERTY =
                new ChildListPropertyDescriptor(VariableDeclarationExpression.class , "fragments", VariableDeclarationFragment.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
27
Line Count
2
Source Line
60
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationStatement.java

        /**
         * The "modifiers" structural property of this node type (added in JLS3 API).
         * @since 3.1
         */
        public static final ChildListPropertyDescriptor MODIFIERS2_PROPERTY =
                new ChildListPropertyDescriptor(VariableDeclarationStatement.class , "modifiers", IExtendedModifier.class , CYCLE_RISK); //$NON-NLS-1$


Clone Instance
28
Line Count
2
Source Line
74
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationStatement.java

        /**
         * The "fragments" structural property of this node type).
         * @since 3.0
         */
        public static final ChildListPropertyDescriptor FRAGMENTS_PROPERTY =
                new ChildListPropertyDescriptor(VariableDeclarationStatement.class , "fragments", VariableDeclarationFragment.class , CYCLE_RISK); //$NON-NLS-1$


Clone AbstractionParameter Count: 4Parameter Bindings

/**
         * The "modifiers" structural property of this node type (added in JLS3 API).
         * @since 3.1
         */
/**
         * The "fragments" structural property of this node type).
         * @since 3.0
         */
/**
         * The "catchClauses" structural property of this node type.
         * @since 3.0
         */
/**
         * The "fragments" structural property of this node type.
         * @since 3.0
         */
/**
         * The "statements" structural property of this node type.
         * @since 3.0
         */
/**
         * The "arguments" structural property of this node type.
         * @since 3.0
         */
/**
         * The "typeArguments" structural property of this node type.
         */
/**
         * The "annotations" structural property of this node type (added in JLS3 API).
         * @since 3.1
         */
/**
         * The "values" structural property of this node type.
         */
/**
         * The "parameters" structural property of this node type).
         * @since 3.0
         */
/**
         * The "tags" structural property of this node type.
         * @since 3.1
         */
/**
         * The "extendedOperands" structural property of this node type.
         * @since 3.0
         */
/**
         * The "initializers" structural property of this node type.
         * @since 3.0
         */
/**
         * The "updaters" structural property of this node type.
         * @since 3.0
         */
/**
         * The "enumConstants" structural property of this node type.
         */
/**
         * The "types" structural property of this node type.
         * 
         * @since 3.0
         */
/**
         * The "expressions" structural property of this node type.
         * @since 3.0
         */
/**
         * The "dimensions" structural property of this node type.
         * @since 3.0
         */
/**
         * The "bodyDeclarations" structural property of this node type.
         * @since 3.0
         */
public static final ChildListPropertyDescriptor  [[#variableb8be8b00]]= new ChildListPropertyDescriptor( [[#variableb8be8aa0]].class ,  [[#variableb8be8a00]],  [[#variableb8be8920]].class , CYCLE_RISK); //$NON-NLS-1$
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b8be8b00]]
MODIFIERS2_PROPERTY 
12[[#b8be8b00]]
FRAGMENTS_PROPERTY 
13[[#b8be8b00]]
MODIFIERS2_PROPERTY 
14[[#b8be8b00]]
FRAGMENTS_PROPERTY 
15[[#b8be8b00]]
CATCH_CLAUSES_PROPERTY 
16[[#b8be8b00]]
FRAGMENTS_PROPERTY 
17[[#b8be8b00]]
STATEMENTS_PROPERTY 
18[[#b8be8b00]]
ARGUMENTS_PROPERTY 
19[[#b8be8b00]]
ARGUMENTS_PROPERTY 
110[[#b8be8b00]]
MODIFIERS2_PROPERTY 
111[[#b8be8b00]]
TYPE_ARGUMENTS_PROPERTY 
112[[#b8be8b00]]
ANNOTATIONS_PROPERTY 
113[[#b8be8b00]]
VALUES_PROPERTY 
114[[#b8be8b00]]
ARGUMENTS_PROPERTY 
115[[#b8be8b00]]
PARAMETERS_PROPERTY 
116[[#b8be8b00]]
TAGS_PROPERTY 
117[[#b8be8b00]]
EXTENDED_OPERANDS_PROPERTY 
118[[#b8be8b00]]
INITIALIZERS_PROPERTY 
119[[#b8be8b00]]
UPDATERS_PROPERTY 
120[[#b8be8b00]]
FRAGMENTS_PROPERTY 
121[[#b8be8b00]]
ENUM_CONSTANTS_PROPERTY 
122[[#b8be8b00]]
ARGUMENTS_PROPERTY 
123[[#b8be8b00]]
TYPES_PROPERTY 
124[[#b8be8b00]]
ARGUMENTS_PROPERTY 
125[[#b8be8b00]]
STATEMENTS_PROPERTY 
126[[#b8be8b00]]
EXPRESSIONS_PROPERTY 
127[[#b8be8b00]]
DIMENSIONS_PROPERTY 
128[[#b8be8b00]]
BODY_DECLARATIONS_PROPERTY 
21[[#b8be8aa0]]
VariableDeclarationStatement 
22[[#b8be8aa0]]
VariableDeclarationStatement 
23[[#b8be8aa0]]
VariableDeclarationExpression 
24[[#b8be8aa0]]
VariableDeclarationExpression 
25[[#b8be8aa0]]
TryStatement 
26[[#b8be8aa0]]
TagElement 
27[[#b8be8aa0]]
SwitchStatement 
28[[#b8be8aa0]]
SuperMethodInvocation 
29[[#b8be8aa0]]
SuperConstructorInvocation 
210[[#b8be8aa0]]
SingleVariableDeclaration 
211[[#b8be8aa0]]
ParameterizedType 
212[[#b8be8aa0]]
PackageDeclaration 
213[[#b8be8aa0]]
NormalAnnotation 
214[[#b8be8aa0]]
MethodInvocation 
215[[#b8be8aa0]]
MethodDeclaration 
216[[#b8be8aa0]]
Javadoc 
217[[#b8be8aa0]]
InfixExpression 
218[[#b8be8aa0]]
ForStatement 
219[[#b8be8aa0]]
ForStatement 
220[[#b8be8aa0]]
FieldDeclaration 
221[[#b8be8aa0]]
EnumDeclaration 
222[[#b8be8aa0]]
ConstructorInvocation 
223[[#b8be8aa0]]
CompilationUnit 
224[[#b8be8aa0]]
ClassInstanceCreation 
225[[#b8be8aa0]]
Block 
226[[#b8be8aa0]]
ArrayInitializer 
227[[#b8be8aa0]]
ArrayCreation 
228[[#b8be8aa0]]
AnonymousClassDeclaration 
31[[#b8be8a00]]
"modifiers" 
32[[#b8be8a00]]
"fragments" 
33[[#b8be8a00]]
"modifiers" 
34[[#b8be8a00]]
"fragments" 
35[[#b8be8a00]]
"catchClauses" 
36[[#b8be8a00]]
"fragments" 
37[[#b8be8a00]]
"statements" 
38[[#b8be8a00]]
"arguments" 
39[[#b8be8a00]]
"arguments" 
310[[#b8be8a00]]
"modifiers" 
311[[#b8be8a00]]
"typeArguments" 
312[[#b8be8a00]]
"annotations" 
313[[#b8be8a00]]
"values" 
314[[#b8be8a00]]
"arguments" 
315[[#b8be8a00]]
"parameters" 
316[[#b8be8a00]]
"tags" 
317[[#b8be8a00]]
"extendedOperands" 
318[[#b8be8a00]]
"initializers" 
319[[#b8be8a00]]
"updaters" 
320[[#b8be8a00]]
"fragments" 
321[[#b8be8a00]]
"enumConstants" 
322[[#b8be8a00]]
"arguments" 
323[[#b8be8a00]]
"types" 
324[[#b8be8a00]]
"arguments" 
325[[#b8be8a00]]
"statements" 
326[[#b8be8a00]]
"expressions" 
327[[#b8be8a00]]
"dimensions" 
328[[#b8be8a00]]
"bodyDeclarations" 
41[[#b8be8920]]
IExtendedModifier 
42[[#b8be8920]]
VariableDeclarationFragment 
43[[#b8be8920]]
IExtendedModifier 
44[[#b8be8920]]
VariableDeclarationFragment 
45[[#b8be8920]]
CatchClause 
46[[#b8be8920]]
IDocElement 
47[[#b8be8920]]
Statement 
48[[#b8be8920]]
Expression 
49[[#b8be8920]]
Expression 
410[[#b8be8920]]
IExtendedModifier 
411[[#b8be8920]]
Type 
412[[#b8be8920]]
Annotation 
413[[#b8be8920]]
MemberValuePair 
414[[#b8be8920]]
Expression 
415[[#b8be8920]]
SingleVariableDeclaration 
416[[#b8be8920]]
TagElement 
417[[#b8be8920]]
Expression 
418[[#b8be8920]]
Expression 
419[[#b8be8920]]
Expression 
420[[#b8be8920]]
VariableDeclarationFragment 
421[[#b8be8920]]
EnumConstantDeclaration 
422[[#b8be8920]]
Expression 
423[[#b8be8920]]
AbstractTypeDeclaration 
424[[#b8be8920]]
Expression 
425[[#b8be8920]]
Statement 
426[[#b8be8920]]
Expression 
427[[#b8be8920]]
Expression 
428[[#b8be8920]]
BodyDeclaration