Uses of Interface
org.aopalliance.reflect.Code
Packages that use Code
Package
Description
This package provides an API for program instrumentation.
This package provides a set of interfaces for implementing a
generic reflection API.
-
Uses of Code in org.aopalliance.instrument
Methods in org.aopalliance.instrument with parameters of type CodeModifier and TypeMethodDescriptionInstrumentor.addAfterCode(CodeLocator location, Code afterCode, Instrumentation before, Instrumentation after) Adds some code after a given method code body.Instrumentor.addAroundCode(CodeLocator location, Code aroundCode, String proceedMethodName, Instrumentation before, Instrumentation after) Adds some code around a given method code body.Instrumentor.addBeforeCode(CodeLocator location, Code beforeCode, Instrumentation before, Instrumentation after) Adds some code before a given method code body.Instrumentor.addField(ClassLocator location, String name, String typeName, Code initializator) Adds a new field to the target class.Instrumentor.addMethod(ClassLocator location, String name, String[] parameterTypeNames, String[] parameterNames, Code body) Adds a new method to the class location. -
Uses of Code in org.aopalliance.reflect
Methods in org.aopalliance.reflect that return Code