CloneSet115


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
62030.957class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16231
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
26302
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
36324
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
46395
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
56466
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
66536
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
76676
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
86830
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
961189
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1061473
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1161549
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1261690
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1361734
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1461824
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1561929
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1662025
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1762047
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1862069
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
1962168
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
2062190
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java
Clone Instance
1
Line Count
6
Source Line
231
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(AnonymousClassDeclaration node, Object other) {
                if ( !(other instanceof AnonymousClassDeclaration)) {
                        return false;
                }
                AnonymousClassDeclaration o = (AnonymousClassDeclaration) other;
                return safeSubtreeListMatch(node.bodyDeclarations(), o.bodyDeclarations());
        }


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

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(ArrayInitializer node, Object other) {
                if ( !(other instanceof ArrayInitializer)) {
                        return false;
                }
                ArrayInitializer o = (ArrayInitializer) other;
                return safeSubtreeListMatch(node.expressions(), o.expressions());
        }


Clone Instance
3
Line Count
6
Source Line
324
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(ArrayType node, Object other) {
                if ( !(other instanceof ArrayType)) {
                        return false;
                }
                ArrayType o = (ArrayType) other;
                return safeSubtreeMatch(node.getComponentType(), o.getComponentType());
        }


Clone Instance
4
Line Count
6
Source Line
395
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(Block node, Object other) {
                if ( !(other instanceof Block)) {
                        return false;
                }
                Block o = (Block) other;
                return safeSubtreeListMatch(node.statements(), o.statements());
        }


Clone Instance
5
Line Count
6
Source Line
466
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(BreakStatement node, Object other) {
                if ( !(other instanceof BreakStatement)) {
                        return false;
                }
                BreakStatement o = (BreakStatement) other;
                return safeSubtreeMatch(node.getLabel(), o.getLabel());
        }


Clone Instance
6
Line Count
6
Source Line
536
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(CharacterLiteral node, Object other) {
                if ( !(other instanceof CharacterLiteral)) {
                        return false;
                }
                CharacterLiteral o = (CharacterLiteral) other;
                return safeEquals(node.getEscapedValue(), o.getEscapedValue());
        }


Clone Instance
7
Line Count
6
Source Line
676
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(ContinueStatement node, Object other) {
                if ( !(other instanceof ContinueStatement)) {
                        return false;
                }
                ContinueStatement o = (ContinueStatement) other;
                return safeSubtreeMatch(node.getLabel(), o.getLabel());
        }


Clone Instance
8
Line Count
6
Source Line
830
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(ExpressionStatement node, Object other) {
                if ( !(other instanceof ExpressionStatement)) {
                        return false;
                }
                ExpressionStatement o = (ExpressionStatement) other;
                return safeSubtreeMatch(node.getExpression(), o.getExpression());
        }


Clone Instance
9
Line Count
6
Source Line
1189
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         * @since 3.1
         */
        public boolean match(MarkerAnnotation node, Object other) {
                if ( !(other instanceof MarkerAnnotation)) {
                        return false;
                }
                MarkerAnnotation o = (MarkerAnnotation) other;
                return safeSubtreeMatch(node.getTypeName(), o.getTypeName());
        }


Clone Instance
10
Line Count
6
Source Line
1473
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(NumberLiteral node, Object other) {
                if ( !(other instanceof NumberLiteral)) {
                        return false;
                }
                NumberLiteral o = (NumberLiteral) other;
                return safeEquals(node.getToken(), o.getToken());
        }


Clone Instance
11
Line Count
6
Source Line
1549
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(ParenthesizedExpression node, Object other) {
                if ( !(other instanceof ParenthesizedExpression)) {
                        return false;
                }
                ParenthesizedExpression o = (ParenthesizedExpression) other;
                return safeSubtreeMatch(node.getExpression(), o.getExpression());
        }


Clone Instance
12
Line Count
6
Source Line
1690
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(ReturnStatement node, Object other) {
                if ( !(other instanceof ReturnStatement)) {
                        return false;
                }
                ReturnStatement o = (ReturnStatement) other;
                return safeSubtreeMatch(node.getExpression(), o.getExpression());
        }


Clone Instance
13
Line Count
6
Source Line
1734
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(SimpleType node, Object other) {
                if ( !(other instanceof SimpleType)) {
                        return false;
                }
                SimpleType o = (SimpleType) other;
                return safeSubtreeMatch(node.getName(), o.getName());
        }


Clone Instance
14
Line Count
6
Source Line
1824
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(StringLiteral node, Object other) {
                if ( !(other instanceof StringLiteral)) {
                        return false;
                }
                StringLiteral o = (StringLiteral) other;
                return safeEquals(node.getEscapedValue(), o.getEscapedValue());
        }


Clone Instance
15
Line Count
6
Source Line
1929
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(SwitchCase node, Object other) {
                if ( !(other instanceof SwitchCase)) {
                        return false;
                }
                SwitchCase o = (SwitchCase) other;
                return safeSubtreeMatch(node.getExpression(), o.getExpression());
        }


Clone Instance
16
Line Count
6
Source Line
2025
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         * @since 3.0
         */
        public boolean match(TextElement node, Object other) {
                if ( !(other instanceof TextElement)) {
                        return false;
                }
                TextElement o = (TextElement) other;
                return safeEquals(node.getText(), o.getText());
        }


Clone Instance
17
Line Count
6
Source Line
2047
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(ThisExpression node, Object other) {
                if ( !(other instanceof ThisExpression)) {
                        return false;
                }
                ThisExpression o = (ThisExpression) other;
                return safeSubtreeMatch(node.getQualifier(), o.getQualifier());
        }


Clone Instance
18
Line Count
6
Source Line
2069
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(ThrowStatement node, Object other) {
                if ( !(other instanceof ThrowStatement)) {
                        return false;
                }
                ThrowStatement o = (ThrowStatement) other;
                return safeSubtreeMatch(node.getExpression(), o.getExpression());
        }


Clone Instance
19
Line Count
6
Source Line
2168
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(TypeDeclarationStatement node, Object other) {
                if ( !(other instanceof TypeDeclarationStatement)) {
                        return false;
                }
                TypeDeclarationStatement o = (TypeDeclarationStatement) other;
                return safeSubtreeMatch(node.getDeclaration(), o.getDeclaration());
        }


Clone Instance
20
Line Count
6
Source Line
2190
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java

        /**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
        public boolean match(TypeLiteral node, Object other) {
                if ( !(other instanceof TypeLiteral)) {
                        return false;
                }
                TypeLiteral o = (TypeLiteral) other;
                return safeSubtreeMatch(node.getType(), o.getType());
        }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         */
/**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         * @since 3.1
         */
/**
         * Returns whether the given node and the other object match.
         * <p>
         * The default implementation provided by this class tests whether the
         * other object is a node of the same type with structurally isomorphic
         * child subtrees. Subclasses may override this method as needed.
         * </p>
         * 
         * @param node the node
         * @param other the other object, or <code>null</code>
         * @return <code>true</code> if the subtree matches, or 
         *   <code>false</code> if they do not match or the other object has a
         *   different node type or is <code>null</code>
         * @since 3.0
         */
public boolean match( [[#variableb8ee31a0]] node, Object other) {
  if ( !(other instanceof [[#variableb8ee31a0]])) {
    return false;
  }
   [[#variableb8ee31a0]] o = ( [[#variableb8ee31a0]]) other;
  return [[#variableb8ee30e0]](node. [[#variableb8ee3060]](), o. [[#variableb8ee3060]]());
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b8ee31a0]]
AnonymousClassDeclaration 
12[[#b8ee31a0]]
ArrayInitializer 
13[[#b8ee31a0]]
ArrayType 
14[[#b8ee31a0]]
Block 
15[[#b8ee31a0]]
BreakStatement 
16[[#b8ee31a0]]
CharacterLiteral 
17[[#b8ee31a0]]
ContinueStatement 
18[[#b8ee31a0]]
ExpressionStatement 
19[[#b8ee31a0]]
MarkerAnnotation 
110[[#b8ee31a0]]
NumberLiteral 
111[[#b8ee31a0]]
ParenthesizedExpression 
112[[#b8ee31a0]]
ReturnStatement 
113[[#b8ee31a0]]
SimpleType 
114[[#b8ee31a0]]
StringLiteral 
115[[#b8ee31a0]]
SwitchCase 
116[[#b8ee31a0]]
TextElement 
117[[#b8ee31a0]]
ThisExpression 
118[[#b8ee31a0]]
ThrowStatement 
119[[#b8ee31a0]]
TypeDeclarationStatement 
120[[#b8ee31a0]]
TypeLiteral 
21[[#b8ee30e0]]
safeSubtreeListMatch 
22[[#b8ee30e0]]
safeSubtreeListMatch 
23[[#b8ee30e0]]
safeSubtreeMatch 
24[[#b8ee30e0]]
safeSubtreeListMatch 
25[[#b8ee30e0]]
safeSubtreeMatch 
26[[#b8ee30e0]]
safeEquals 
27[[#b8ee30e0]]
safeSubtreeMatch 
28[[#b8ee30e0]]
safeSubtreeMatch 
29[[#b8ee30e0]]
safeSubtreeMatch 
210[[#b8ee30e0]]
safeEquals 
211[[#b8ee30e0]]
safeSubtreeMatch 
212[[#b8ee30e0]]
safeSubtreeMatch 
213[[#b8ee30e0]]
safeSubtreeMatch 
214[[#b8ee30e0]]
safeEquals 
215[[#b8ee30e0]]
safeSubtreeMatch 
216[[#b8ee30e0]]
safeEquals 
217[[#b8ee30e0]]
safeSubtreeMatch 
218[[#b8ee30e0]]
safeSubtreeMatch 
219[[#b8ee30e0]]
safeSubtreeMatch 
220[[#b8ee30e0]]
safeSubtreeMatch 
31[[#b8ee3060]]
bodyDeclarations 
32[[#b8ee3060]]
expressions 
33[[#b8ee3060]]
getComponentType 
34[[#b8ee3060]]
statements 
35[[#b8ee3060]]
getLabel 
36[[#b8ee3060]]
getEscapedValue 
37[[#b8ee3060]]
getLabel 
38[[#b8ee3060]]
getExpression 
39[[#b8ee3060]]
getTypeName 
310[[#b8ee3060]]
getToken 
311[[#b8ee3060]]
getExpression 
312[[#b8ee3060]]
getExpression 
313[[#b8ee3060]]
getName 
314[[#b8ee3060]]
getEscapedValue 
315[[#b8ee3060]]
getExpression 
316[[#b8ee3060]]
getText 
317[[#b8ee3060]]
getQualifier 
318[[#b8ee3060]]
getExpression 
319[[#b8ee3060]]
getDeclaration 
320[[#b8ee3060]]
getType