Package org.codehaus.janino
Interface Visitor.FunctionDeclaratorVisitor<R,EX extends java.lang.Throwable>
-
- Type Parameters:
R
- The type of the object returned by thevisit*()
methodsEX
- The exception that thevisit*()
methods may throw
- Enclosing class:
- Visitor
public static interface Visitor.FunctionDeclaratorVisitor<R,EX extends java.lang.Throwable>
The visitor for all kinds ofJava.FunctionDeclarator
s.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
visitConstructorDeclarator(Java.ConstructorDeclarator cd)
R
visitMethodDeclarator(Java.MethodDeclarator md)
-
-
-
Method Detail
-
visitConstructorDeclarator
@Nullable R visitConstructorDeclarator(Java.ConstructorDeclarator cd) throws EX extends java.lang.Throwable
- Throws:
EX extends java.lang.Throwable
-
visitMethodDeclarator
@Nullable R visitMethodDeclarator(Java.MethodDeclarator md) throws EX extends java.lang.Throwable
- Throws:
EX extends java.lang.Throwable
-
-