Uses of Class
javassist.CtBehavior
Package
Description
The Javassist Core API.
This package contains the classes for modifying a method body.
Covenient tools.
-
Uses of CtBehavior in javassist
Modifier and TypeClassDescriptionfinal class
An instance of CtConstructor represents a constructor.final class
An instance ofCtMethod
represents a method.Modifier and TypeMethodDescriptionCtClass.getDeclaredBehaviors()
Gets all the constructors and methods declared in the class.CtClass.getEnclosingBehavior()
Returns the immediately enclosing method of this class. -
Uses of CtBehavior in javassist.expr
Modifier and TypeMethodDescriptionCast.where()
Returns the method or constructor containing the type cast expression represented by this object.Expr.where()
Returns the constructor or method containing the expression.FieldAccess.where()
Returns the method or constructor containing the field-access expression represented by this object.Handler.where()
Returns the method or constructor containing the catch clause.Instanceof.where()
Returns the method or constructor containing the instanceof expression represented by this object.MethodCall.where()
Returns the method or constructor containing the method-call expression represented by this object.NewArray.where()
Returns the method or constructor containing the array creation represented by this object.NewExpr.where()
Returns the method or constructor containing thenew
expression represented by this object. -
Uses of CtBehavior in javassist.tools
Modifier and TypeMethodDescriptionstatic void
Callback.insertAfter
(CtBehavior behavior, Callback callback) Utility method to inserts callback at the end of the body.static void
Callback.insertAfter
(CtBehavior behavior, Callback callback, boolean asFinally) Utility method to inserts callback at the end of the body.static int
Callback.insertAt
(CtBehavior behavior, Callback callback, int lineNum) Utility method to inserts callback at the specified line in the body.static void
Callback.insertBefore
(CtBehavior behavior, Callback callback) Utility method to insert callback at the beginning of the body.