Home
last modified time | relevance | path

Searched refs:NodeList (Results 1 – 25 of 219) sorted by relevance

123456789

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
DClassOrInterfaceDeclaration.java27 import com.github.javaparser.ast.NodeList;
63 private NodeList<TypeParameter> typeParameters;
66 private NodeList<ClassOrInterfaceType> extendedTypes;
68 private NodeList<ClassOrInterfaceType> implementedTypes;
71 …Of(Modifier.class), new NodeList<>(), false, new SimpleName(), new NodeList<>(), new NodeList<>(),… in ClassOrInterfaceDeclaration()
75 …ll, modifiers, new NodeList<>(), isInterface, new SimpleName(name), new NodeList<>(), new NodeList in ClassOrInterfaceDeclaration()
79NodeList<AnnotationExpr> annotations, final boolean isInterface, final SimpleName name, final Node… in ClassOrInterfaceDeclaration()
87NodeList<AnnotationExpr> annotations, boolean isInterface, SimpleName name, NodeList<TypeParameter… in ClassOrInterfaceDeclaration()
109 public NodeList<ClassOrInterfaceType> getExtendedTypes() { in getExtendedTypes()
114 public NodeList<ClassOrInterfaceType> getImplementedTypes() { in getImplementedTypes()
[all …]
DConstructorDeclaration.java26 import com.github.javaparser.ast.NodeList;
63 …EnumSet.noneOf(Modifier.class), new NodeList<>(), new NodeList<>(), new SimpleName(), new NodeList in ConstructorDeclaration()
67 … EnumSet.of(Modifier.PUBLIC), new NodeList<>(), new NodeList<>(), new SimpleName(name), new NodeLi… in ConstructorDeclaration()
71 …this(null, modifiers, new NodeList<>(), new NodeList<>(), new SimpleName(name), new NodeList<>(), … in ConstructorDeclaration()
74 …difiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName … in ConstructorDeclaration()
79 …difiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName … in ConstructorDeclaration()
87 …difiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName … in ConstructorDeclaration()
141 public ConstructorDeclaration setParameters(final NodeList<Parameter> parameters) { in setParameters()
146 …public ConstructorDeclaration setThrownExceptions(final NodeList<ReferenceType> thrownExceptions) { in setThrownExceptions()
151 public ConstructorDeclaration setTypeParameters(final NodeList<TypeParameter> typeParameters) { in setTypeParameters()
DMethodDeclaration.java26 import com.github.javaparser.ast.NodeList;
71 …(Modifier.class), new NodeList<>(), new NodeList<>(), new ClassOrInterfaceType(), new SimpleName()… in MethodDeclaration()
75 …this(null, modifiers, new NodeList<>(), new NodeList<>(), type, new SimpleName(name), new NodeList in MethodDeclaration()
78 … EnumSet<Modifier> modifiers, final String name, final Type type, final NodeList<Parameter> parame… in MethodDeclaration()
79 …this(null, modifiers, new NodeList<>(), new NodeList<>(), type, new SimpleName(name), parameters, … in MethodDeclaration()
82NodeList<AnnotationExpr> annotations, final NodeList<TypeParameter> typeParameters, final Type typ… in MethodDeclaration()
87NodeList<AnnotationExpr> annotations, final NodeList<TypeParameter> typeParameters, final Type typ… in MethodDeclaration()
95NodeList<AnnotationExpr> annotations, final NodeList<TypeParameter> typeParameters, final Type typ… in MethodDeclaration()
104 …s, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, Type type, Simple… in MethodDeclaration()
177 public MethodDeclaration setParameters(final NodeList<Parameter> parameters) { in setParameters()
[all …]
DEnumDeclaration.java27 import com.github.javaparser.ast.NodeList;
55 private NodeList<ClassOrInterfaceType> implementedTypes;
57 private NodeList<EnumConstantDeclaration> entries;
60 …EnumSet.noneOf(Modifier.class), new NodeList<>(), new SimpleName(), new NodeList<>(), new NodeList in EnumDeclaration()
64 …this(null, modifiers, new NodeList<>(), new SimpleName(name), new NodeList<>(), new NodeList<>(), … in EnumDeclaration()
68NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<ClassOrInterfaceType> implementedT… in EnumDeclaration()
76NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<ClassOrInterfaceType> implementedT… in EnumDeclaration()
96 public NodeList<EnumConstantDeclaration> getEntries() { in getEntries()
115 public NodeList<ClassOrInterfaceType> getImplementedTypes() { in getImplementedTypes()
120 public EnumDeclaration setEntries(final NodeList<EnumConstantDeclaration> entries) { in setEntries()
[all …]
DEnumConstantDeclaration.java24 import com.github.javaparser.ast.NodeList;
58 private NodeList<Expression> arguments;
60 private NodeList<BodyDeclaration<?>> classBody;
63 this(null, new NodeList<>(), new SimpleName(), new NodeList<>(), new NodeList<>()); in EnumConstantDeclaration()
67 this(null, new NodeList<>(), new SimpleName(name), new NodeList<>(), new NodeList<>()); in EnumConstantDeclaration()
71 …blic EnumConstantDeclaration(NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Expre… in EnumConstantDeclaration()
79 …ation(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Expre… in EnumConstantDeclaration()
100 public NodeList<Expression> getArguments() { in getArguments()
105 public NodeList<BodyDeclaration<?>> getClassBody() { in getClassBody()
115 public EnumConstantDeclaration setArguments(final NodeList<Expression> arguments) { in setArguments()
[all …]
DParameter.java26 import com.github.javaparser.ast.NodeList;
65 private NodeList<AnnotationExpr> varArgsAnnotations;
69 private NodeList<AnnotationExpr> annotations;
74 …his(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), new ClassOrInterfaceType(), false, new… in Parameter()
78 … this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), type, false, new NodeList<>(), name); in Parameter()
88 …this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), type, false, new NodeList<>(), new Si… in Parameter()
92 this(null, modifiers, new NodeList<>(), type, false, new NodeList<>(), name); in Parameter()
96 …arameter(EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, boolean isV… in Parameter()
104 …enRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, boolean isV… in Parameter()
165 public NodeList<AnnotationExpr> getAnnotations() { in getAnnotations()
[all …]
DCallableDeclaration.java27 import com.github.javaparser.ast.NodeList;
57 private NodeList<TypeParameter> typeParameters;
61 private NodeList<Parameter> parameters;
63 private NodeList<ReferenceType> thrownExceptions;
69 …difiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName … in CallableDeclaration()
77 …difiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName … in CallableDeclaration()
132 public NodeList<Parameter> getParameters() { in getParameters()
138 public T setParameters(final NodeList<Parameter> parameters) { in setParameters()
152 public NodeList<ReferenceType> getThrownExceptions() { in getThrownExceptions()
158 public T setThrownExceptions(final NodeList<ReferenceType> thrownExceptions) { in setThrownExceptions()
[all …]
DTypeDeclaration.java57 private NodeList<BodyDeclaration<?>> members;
60 … this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), new SimpleName(), new NodeList<>()); in TypeDeclaration()
64 this(null, modifiers, new NodeList<>(), new SimpleName(name), new NodeList<>()); in TypeDeclaration()
68 …TypeDeclaration(EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name… in TypeDeclaration()
76 …nge tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name… in TypeDeclaration()
90 NodeList<BodyDeclaration<?>> members = getMembers(); in addMember()
96 public NodeList<BodyDeclaration<?>> getMembers() { in getMembers()
113 public T setMembers(final NodeList<BodyDeclaration<?>> members) { in setMembers()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
DMethodCallExpr.java24 import com.github.javaparser.ast.NodeList;
58 private NodeList<Type> typeArguments;
62 private NodeList<Expression> arguments;
65 this(null, null, new NodeList<>(), new SimpleName(), new NodeList<>()); in MethodCallExpr()
69 this(null, null, new NodeList<>(), new SimpleName(name), new NodeList<>(arguments)); in MethodCallExpr()
73 this(null, scope, new NodeList<>(), new SimpleName(name), new NodeList<>()); in MethodCallExpr()
77 this(null, scope, new NodeList<>(), name, new NodeList<>()); in MethodCallExpr()
80 …public MethodCallExpr(final Expression scope, final String name, final NodeList<Expression> argume… in MethodCallExpr()
81 this(null, scope, new NodeList<>(), new SimpleName(name), arguments); in MethodCallExpr()
84 …public MethodCallExpr(final Expression scope, final SimpleName name, final NodeList<Expression> ar… in MethodCallExpr()
[all …]
DVariableDeclarationExpr.java26 import com.github.javaparser.ast.NodeList;
43 import static com.github.javaparser.ast.NodeList.nodeList;
65 private NodeList<AnnotationExpr> annotations;
68 private NodeList<VariableDeclarator> variables;
71 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), new NodeList<>()); in VariableDeclarationExpr()
75 …this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), nodeList(new VariableDeclarator(type,… in VariableDeclarationExpr()
79 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), nodeList(var)); in VariableDeclarationExpr()
83 …ect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), new NodeList<>(), nodeList(new… in VariableDeclarationExpr()
87 …ect(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), new NodeList<>(), nodeList(var… in VariableDeclarationExpr()
90 public VariableDeclarationExpr(final NodeList<VariableDeclarator> variables) { in VariableDeclarationExpr()
[all …]
DObjectCreationExpr.java24 import com.github.javaparser.ast.NodeList;
65 private NodeList<Type> typeArguments;
67 private NodeList<Expression> arguments;
70 private NodeList<BodyDeclaration<?>> anonymousClassBody;
73 this(null, null, new ClassOrInterfaceType(), new NodeList<>(), new NodeList<>(), null); in ObjectCreationExpr()
83 …tionExpr(final Expression scope, final ClassOrInterfaceType type, final NodeList<Expression> argum… in ObjectCreationExpr()
84 this(null, scope, type, new NodeList<>(), arguments, null); in ObjectCreationExpr()
88 …l ClassOrInterfaceType type, final NodeList<Type> typeArguments, final NodeList<Expression> argume… in ObjectCreationExpr()
96 …ession scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> argume… in ObjectCreationExpr()
119 public Optional<NodeList<BodyDeclaration<?>>> getAnonymousClassBody() { in getAnonymousClassBody()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DNodeList.java47 public class NodeList<N extends Node> implements List<N>, Iterable<N>, HasParentNode<NodeList<N>>, … class
55 public NodeList() { in NodeList() method in NodeList
59 public NodeList(Collection<N> n) { in NodeList() method in NodeList
63 public NodeList(N... n) { in NodeList() method in NodeList
99 public static <X extends Node> NodeList<X> nodeList(X... nodes) { in nodeList()
100 final NodeList<X> nodeList = new NodeList<>(); in nodeList()
105 public static <X extends Node> NodeList<X> nodeList(Collection<X> nodes) { in nodeList()
106 final NodeList<X> nodeList = new NodeList<>(); in nodeList()
111 public static <X extends Node> NodeList<X> nodeList(NodeList<X> nodes) { in nodeList()
112 final NodeList<X> nodeList = new NodeList<>(); in nodeList()
[all …]
/external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
DGeneratedJavaParserBase.java6 import com.github.javaparser.ast.NodeList;
147 JavaToken nodeListBegin(NodeList<?> l) { in nodeListBegin()
191 <T extends Node> NodeList<T> emptyList() { in emptyList()
192 return new NodeList<>(); in emptyList()
198 <T extends Node> NodeList<T> add(NodeList<T> list, T obj) { in add()
200 list = new NodeList<>(); in add()
209 <T extends Node> NodeList<T> addWhenNotNull(NodeList<T> list, T obj) { in addWhenNotNull()
219 <T extends Node> NodeList<T> prepend(NodeList<T> list, T obj) { in prepend()
221 list = new NodeList<>(); in prepend()
272NodeList<Parameter> params = add(new NodeList<>(), new Parameter(ret.getTokenRange().orElse(null),… in generateLambda()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
DTypeParameter.java25 import com.github.javaparser.ast.NodeList;
62 private NodeList<ClassOrInterfaceType> typeBound;
65 this(null, new SimpleName(), new NodeList<>(), new NodeList<>()); in TypeParameter()
69 this(null, new SimpleName(name), new NodeList<>(), new NodeList<>()); in TypeParameter()
72 public TypeParameter(final String name, final NodeList<ClassOrInterfaceType> typeBound) { in TypeParameter()
73 this(null, new SimpleName(name), typeBound, new NodeList<>()); in TypeParameter()
80 …public TypeParameter(Range range, final SimpleName name, final NodeList<ClassOrInterfaceType> type… in TypeParameter()
81 this(null, name, typeBound, new NodeList<>()); in TypeParameter()
86 …public TypeParameter(SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<Annotatio… in TypeParameter()
94 …eParameter(TokenRange tokenRange, SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeL… in TypeParameter()
[all …]
DClassOrInterfaceType.java25 import com.github.javaparser.ast.NodeList;
68 private NodeList<Type> typeArguments;
71 this(null, null, new SimpleName(), null, new NodeList<>()); in ClassOrInterfaceType()
78 this(null, null, new SimpleName(name), null, new NodeList<>()); in ClassOrInterfaceType()
82 this(null, scope, new SimpleName(name), null, new NodeList<>()); in ClassOrInterfaceType()
85 …faceType(final ClassOrInterfaceType scope, final SimpleName name, final NodeList<Type> typeArgumen… in ClassOrInterfaceType()
86 this(null, scope, name, typeArguments, new NodeList<>()); in ClassOrInterfaceType()
90 …ssOrInterfaceType scope, final SimpleName name, final NodeList<Type> typeArguments, final NodeList in ClassOrInterfaceType()
98 …tokenRange, ClassOrInterfaceType scope, SimpleName name, NodeList<Type> typeArguments, NodeList<An… in ClassOrInterfaceType()
173 public Optional<NodeList<Type>> getTypeArguments() { in getTypeArguments()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/modules/
DModuleDeclaration.java5 import com.github.javaparser.ast.NodeList;
29 private NodeList<AnnotationExpr> annotations;
33 private NodeList<ModuleStmt> moduleStmts;
36 this(null, new NodeList<>(), new Name(), false, new NodeList<>()); in ModuleDeclaration()
40 this(null, new NodeList<>(), name, isOpen, new NodeList<>()); in ModuleDeclaration()
44 …public ModuleDeclaration(NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList in ModuleDeclaration()
52 …oduleDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name, boolean i… in ModuleDeclaration()
93 public NodeList<AnnotationExpr> getAnnotations() { in getAnnotations()
98 public ModuleDeclaration setAnnotations(final NodeList<AnnotationExpr> annotations) { in setAnnotations()
147 public NodeList<ModuleStmt> getModuleStmts() { in getModuleStmts()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DCloneVisitor.java41 NodeList<ImportDeclaration> imports = cloneList(n.getImports(), arg); in visit()
44 NodeList<TypeDeclaration<?>> types = cloneList(n.getTypes(), arg); in visit()
54 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg); in visit()
66 NodeList<ClassOrInterfaceType> typeBound = cloneList(n.getTypeBound(), arg); in visit()
67 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg); in visit()
95 NodeList<ClassOrInterfaceType> extendedTypes = cloneList(n.getExtendedTypes(), arg); in visit()
96 NodeList<ClassOrInterfaceType> implementedTypes = cloneList(n.getImplementedTypes(), arg); in visit()
97 NodeList<TypeParameter> typeParameters = cloneList(n.getTypeParameters(), arg); in visit()
98 NodeList<BodyDeclaration<?>> members = cloneList(n.getMembers(), arg); in visit()
100 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg); in visit()
[all …]
DModifierVisitor.java55 NodeList<BodyDeclaration<?>> members = modifyList(n.getMembers(), arg); in visit()
57 NodeList<AnnotationExpr> annotations = modifyList(n.getAnnotations(), arg); in visit()
74 NodeList<AnnotationExpr> annotations = modifyList(n.getAnnotations(), arg); in visit()
105 NodeList<ArrayCreationLevel> levels = modifyList(n.getLevels(), arg); in visit()
119 NodeList<Expression> values = modifyList(n.getValues(), arg); in visit()
173 NodeList<Statement> statements = modifyList(n.getStatements(), arg); in visit()
249 NodeList<ClassOrInterfaceType> extendedTypes = modifyList(n.getExtendedTypes(), arg); in visit()
250 NodeList<ClassOrInterfaceType> implementedTypes = modifyList(n.getImplementedTypes(), arg); in visit()
251 NodeList<TypeParameter> typeParameters = modifyList(n.getTypeParameters(), arg); in visit()
252 NodeList<BodyDeclaration<?>> members = modifyList(n.getMembers(), arg); in visit()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DExplicitConstructorInvocationStmt.java24 import com.github.javaparser.ast.NodeList;
57 private NodeList<Type> typeArguments;
64 private NodeList<Expression> arguments;
67 this(null, new NodeList<>(), true, null, new NodeList<>()); in ExplicitConstructorInvocationStmt()
70 …InvocationStmt(final boolean isThis, final Expression expression, final NodeList<Expression> argum… in ExplicitConstructorInvocationStmt()
71 this(null, new NodeList<>(), isThis, expression, arguments); in ExplicitConstructorInvocationStmt()
75 …structorInvocationStmt(final NodeList<Type> typeArguments, final boolean isThis, final Expression … in ExplicitConstructorInvocationStmt()
83 …InvocationStmt(TokenRange tokenRange, NodeList<Type> typeArguments, boolean isThis, Expression exp… in ExplicitConstructorInvocationStmt()
105 public NodeList<Expression> getArguments() { in getArguments()
134 public ExplicitConstructorInvocationStmt setArguments(final NodeList<Expression> arguments) { in setArguments()
[all …]
DTryStmt.java26 import com.github.javaparser.ast.NodeList;
99 private NodeList<Expression> resources;
103 private NodeList<CatchClause> catchClauses;
109 this(null, new NodeList<>(), new BlockStmt(), new NodeList<>(), null); in TryStmt()
112 …public TryStmt(final BlockStmt tryBlock, final NodeList<CatchClause> catchClauses, final BlockStmt… in TryStmt()
113 this(null, new NodeList<>(), tryBlock, catchClauses, finallyBlock); in TryStmt()
117 …public TryStmt(NodeList<Expression> resources, final BlockStmt tryBlock, final NodeList<CatchClaus… in TryStmt()
125 …public TryStmt(TokenRange tokenRange, NodeList<Expression> resources, BlockStmt tryBlock, NodeList in TryStmt()
147 public NodeList<CatchClause> getCatchClauses() { in getCatchClauses()
162 public NodeList<Expression> getResources() { in getResources()
[all …]
DForStmt.java26 import com.github.javaparser.ast.NodeList;
71 private NodeList<Expression> initialization;
76 private NodeList<Expression> update;
81 this(null, new NodeList<>(), new BooleanLiteralExpr(), new NodeList<>(), new ReturnStmt()); in ForStmt()
85 …public ForStmt(final NodeList<Expression> initialization, final Expression compare, final NodeList in ForStmt()
93 …public ForStmt(TokenRange tokenRange, NodeList<Expression> initialization, Expression compare, Nod… in ForStmt()
125 public NodeList<Expression> getInitialization() { in getInitialization()
130 public NodeList<Expression> getUpdate() { in getUpdate()
168 public ForStmt setInitialization(final NodeList<Expression> initialization) { in setInitialization()
182 public ForStmt setUpdate(final NodeList<Expression> update) { in setUpdate()
/external/python/cpython3/Lib/test/
Dtest_xml_dom_minicompat.py35 node_list = EmptyNodeList() + NodeList()
36 self.assertEqual(node_list, NodeList())
49 node_list = NodeList()
70 node_list = NodeList([1, 2])
78 node_list = NodeList([3, 4]) + [1, 2]
79 self.assertEqual(node_list, NodeList([3, 4, 1, 2]))
82 node_list = [1, 2] + NodeList([3, 4])
83 self.assertEqual(node_list, NodeList([1, 2, 3, 4]))
90 node_list = NodeList()
106 node_list = NodeList()
[all …]
/external/javaparser/javaparser-core/src/main/javacc/
Djava.jj66 import static com.github.javaparser.ast.NodeList.*;
611 NodeList<ImportDeclaration> imports = emptyList();
613 NodeList<TypeDeclaration<?>> types = emptyList();
644 …range(token_source.getHomeToken(), token()), null, new NodeList<ImportDeclaration>(), new NodeList
652 NodeList<AnnotationExpr> annotations = new NodeList<AnnotationExpr>();
688 NodeList<AnnotationExpr> annotations = new NodeList<AnnotationExpr>();
739 NodeList<ClassOrInterfaceType> extList = emptyList();
740 NodeList<ClassOrInterfaceType> impList = emptyList();
741 NodeList<BodyDeclaration<?>> members = emptyList();
755 NodeList<ClassOrInterfaceType> ExtendsList():
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
DNodeWithTypeArguments.java25 import com.github.javaparser.ast.NodeList;
31 import static com.github.javaparser.ast.NodeList.nodeList;
46 Optional<NodeList<Type>> getTypeArguments(); in getTypeArguments()
53 N setTypeArguments(NodeList<Type> typeArguments); in setTypeArguments()
68 return setTypeArguments(new NodeList<>()); in setDiamondOperator()
76 return setTypeArguments((NodeList<Type>) null); in removeTypeArguments()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
DListRemovalChange.java4 import com.github.javaparser.ast.NodeList;
22 NodeList<Node> nodeList = new NodeList<>(); in getValue()
24 if (!(currentRawValue instanceof NodeList)){ in getValue()
27 NodeList<?> currentNodeList = (NodeList<?>)currentRawValue; in getValue()

123456789