Package javassist.compiler
Interface ProceedHandler
-
- All Known Implementing Classes:
Cast.ProceedForCast
,FieldAccess.ProceedForRead
,FieldAccess.ProceedForWrite
,Instanceof.ProceedForInstanceof
,NewArray.ProceedForArray
,NewExpr.ProceedForNew
public interface ProceedHandler
An interface to an object for implementing $proceed().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
doit(JvstCodeGen gen, Bytecode b, ASTList args)
void
setReturnType(JvstTypeChecker c, ASTList args)
-
-
-
Method Detail
-
doit
void doit(JvstCodeGen gen, Bytecode b, ASTList args) throws CompileError
- Throws:
CompileError
-
setReturnType
void setReturnType(JvstTypeChecker c, ASTList args) throws CompileError
- Throws:
CompileError
-
-