| java.lang.Object xtc.lang.javacc.syntaxtree.MethodDeclaration
MethodDeclaration | public class MethodDeclaration implements Node(Code) | | Grammar production.
f0 -> ( "public" | "protected" | "private" | "static" | "abstract" | "final" | "native" | "synchronized" | "strictfp" )*
f1 -> ResultType()
f2 -> MethodDeclarator()
f3 -> [ "throws" NameList() ]
f4 -> ( Block() | ";" )
|
|
|