Package EDU.purdue.jtb.parser.syntaxtree
Class TypeArguments
- java.lang.Object
-
- EDU.purdue.jtb.parser.syntaxtree.TypeArguments
-
- All Implemented Interfaces:
INode
,java.io.Serializable
public class TypeArguments extends java.lang.Object implements INode
JTB node class for the production TypeArguments:
Corresponding grammar:
f0 -> "<"
f1 -> TypeArgument()
f2 -> ( #0 "," #1 TypeArgument() )*
f3 -> ">"
s: 131755052- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description Token
f0
Child node 0TypeArgument
f1
Child node 1NodeListOptional
f2
Child node 2Token
f3
Child node 3
-
Constructor Summary
Constructors Constructor Description TypeArguments(Token n0, TypeArgument n1, NodeListOptional n2, Token n3)
Constructs the node with all its children nodes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
accept(IIntVisitor vis)
Accepts aIIntVisitor
visitor with user return data.void
accept(IVoidVisitor vis)
Accepts aIVoidVisitor
visitor} visitor with user return data.
-
-
-
Field Detail
-
f0
public Token f0
Child node 0
-
f1
public TypeArgument f1
Child node 1
-
f2
public NodeListOptional f2
Child node 2
-
f3
public Token f3
Child node 3
-
-
Constructor Detail
-
TypeArguments
public TypeArguments(Token n0, TypeArgument n1, NodeListOptional n2, Token n3)
Constructs the node with all its children nodes.- Parameters:
n0
- - first child noden1
- - next child noden2
- - next child noden3
- - next child node
-
-
Method Detail
-
accept
public int accept(IIntVisitor vis)
Accepts aIIntVisitor
visitor with user return data.
-
accept
public void accept(IVoidVisitor vis)
Accepts aIVoidVisitor
visitor} visitor with user return data.
-
-