Package EDU.purdue.jtb.parser.syntaxtree
Class JavaCodeProduction
java.lang.Object
EDU.purdue.jtb.parser.syntaxtree.JavaCodeProduction
- All Implemented Interfaces:
INode
,Serializable
JTB node class for the production JavaCodeProduction:
Corresponding grammar:
f0 -> "JAVACODE"
f1 -> AccessModifier()
f2 -> ResultType()
f3 -> IdentifierAsString()
f4 -> FormalParameters()
f5 -> [ #0 "throws" #1 Name()
.. .. . #2 ( $0 "," $1 Name() )* ]
f6 -> [ "%" ]
f7 -> Block()
s: -763138104
Corresponding grammar:
f0 -> "JAVACODE"
f1 -> AccessModifier()
f2 -> ResultType()
f3 -> IdentifierAsString()
f4 -> FormalParameters()
f5 -> [ #0 "throws" #1 Name()
.. .. . #2 ( $0 "," $1 Name() )* ]
f6 -> [ "%" ]
f7 -> Block()
s: -763138104
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionChild node 0Child node 1Child node 2Child node 3Child node 4Child node 5Child node 6Child node 7 -
Constructor Summary
ConstructorsConstructorDescriptionJavaCodeProduction
(Token n0, AccessModifier n1, ResultType n2, IdentifierAsString n3, FormalParameters n4, NodeOptional n5, NodeOptional n6, Block n7) Constructs the node with all its children nodes. -
Method Summary
Modifier and TypeMethodDescriptionint
accept
(IIntVisitor vis) Accepts aIIntVisitor
visitor with user return data.void
accept
(IVoidVisitor vis) Accepts aIVoidVisitor
visitor} visitor with user return data.
-
Field Details
-
f0
Child node 0 -
f1
Child node 1 -
f2
Child node 2 -
f3
Child node 3 -
f4
Child node 4 -
f5
Child node 5 -
f6
Child node 6 -
f7
Child node 7
-
-
Constructor Details
-
JavaCodeProduction
public JavaCodeProduction(Token n0, AccessModifier n1, ResultType n2, IdentifierAsString n3, FormalParameters n4, NodeOptional n5, NodeOptional n6, Block n7) Constructs the node with all its children nodes.- Parameters:
n0
- - first child noden1
- - next child noden2
- - next child noden3
- - next child noden4
- - next child noden5
- - next child noden6
- - next child noden7
- - next child node
-
-
Method Details
-
accept
Accepts aIIntVisitor
visitor with user return data. -
accept
Accepts aIVoidVisitor
visitor} visitor with user return data.
-