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