Package EDU.purdue.jtb.parser.syntaxtree
Class MethodDeclaration
- java.lang.Object
-
- EDU.purdue.jtb.parser.syntaxtree.MethodDeclaration
-
- All Implemented Interfaces:
INode
,java.io.Serializable
public class MethodDeclaration extends java.lang.Object implements INode
JTB node class for the production MethodDeclaration:
Corresponding grammar:
f0 -> [ TypeParameters() ]
f1 -> ResultType()
f2 -> MethodDeclarator()
f3 -> [ #0 "throws" #1 NameList() ]
f4 -> ( %0 Block()
.. .. | %1 ";" )
s: -418256626- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description NodeOptional
f0
Child node 0ResultType
f1
Child node 1MethodDeclarator
f2
Child node 2NodeOptional
f3
Child node 3NodeChoice
f4
Child node 4
-
Constructor Summary
Constructors Constructor Description MethodDeclaration(NodeOptional n0, ResultType n1, MethodDeclarator n2, NodeOptional n3, NodeChoice n4)
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 NodeOptional f0
Child node 0
-
f1
public ResultType f1
Child node 1
-
f2
public MethodDeclarator f2
Child node 2
-
f3
public NodeOptional f3
Child node 3
-
f4
public NodeChoice f4
Child node 4
-
-
Constructor Detail
-
MethodDeclaration
public MethodDeclaration(NodeOptional n0, ResultType n1, MethodDeclarator n2, NodeOptional n3, NodeChoice n4)
Constructs the node with all its children nodes.- Parameters:
n0
- - first child noden1
- - next child noden2
- - next child noden3
- - next child noden4
- - 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.
-
-