Uses of Class
org.apache.tapestry5.plastic.MethodDescription
-
Packages that use MethodDescription Package Description org.apache.tapestry5.internal.plastic [INTERNAL USE ONLY] Plastic implementation details; API subject to changeorg.apache.tapestry5.internal.transform [INTERNAL USE ONLY] component class transformation implementation classes; API subject to change.org.apache.tapestry5.plastic Plastic, Tapestry's component class transformation library based on ASMorg.apache.tapestry5.services Core services -
-
Uses of MethodDescription in org.apache.tapestry5.internal.plastic
Fields in org.apache.tapestry5.internal.plastic declared as MethodDescription Modifier and Type Field Description MethodDescription
MethodInvocationBundle. methodDescription
Methods in org.apache.tapestry5.internal.plastic that return MethodDescription Modifier and Type Method Description static MethodDescription
PlasticInternalUtils. toMethodDescription(org.apache.tapestry5.internal.plastic.asm.tree.MethodNode node)
Methods in org.apache.tapestry5.internal.plastic with parameters of type MethodDescription Modifier and Type Method Description PlasticMethod
PlasticClassImpl. introduceMethod(MethodDescription description)
PlasticMethod
PlasticClassImpl. introduceMethod(MethodDescription description, InstructionBuilderCallback callback)
InstructionBuilder
InstructionBuilderImpl. invokeSpecial(String containingClassName, MethodDescription description)
boolean
PlasticClassImpl. isMethodImplemented(MethodDescription description)
String
NameCache. toDesc(MethodDescription md)
Constructors in org.apache.tapestry5.internal.plastic with parameters of type MethodDescription Constructor Description InstructionBuilderState(MethodDescription description, org.apache.tapestry5.internal.plastic.asm.MethodVisitor visitor, NameCache nameCache)
MethodInvocationBundle(String className, MethodDescription methodDescription, MethodAdvice[] advice)
-
Uses of MethodDescription in org.apache.tapestry5.internal.transform
Constructors in org.apache.tapestry5.internal.transform with parameters of type MethodDescription Constructor Description PageLifecycleAnnotationWorker(Class<? extends Annotation> methodAnnotationClass, MethodDescription lifecycleMethodDescription, String methodAlias)
-
Uses of MethodDescription in org.apache.tapestry5.plastic
Fields in org.apache.tapestry5.plastic declared as MethodDescription Modifier and Type Field Description static MethodDescription
PlasticUtils. TO_STRING_DESCRIPTION
The MethodDescription version oftoString()
.Methods in org.apache.tapestry5.plastic that return MethodDescription Modifier and Type Method Description MethodDescription
PlasticMethod. getDescription()
Returns a representation of the method's name, return value, argument types, etc.static MethodDescription
PlasticUtils. getMethodDescription(Class declaringClass, String name, Class... parameterTypes)
UsesPlasticUtils.getMethod(Class, String, Class...)
and wraps the result as aMethodDescription
.MethodDescription
MethodDescription. withModifiers(int newModifiers)
Methods in org.apache.tapestry5.plastic with parameters of type MethodDescription Modifier and Type Method Description int
MethodDescription. compareTo(MethodDescription o)
PlasticMethod
PlasticClass. introduceMethod(MethodDescription description)
Returns an existing method declared in this class, or introduces a new method into this class.PlasticMethod
PlasticClass. introduceMethod(MethodDescription description, InstructionBuilderCallback callback)
Returns an existing method declared in this class, or introduces a new method into this class.InstructionBuilder
InstructionBuilder. invokeSpecial(String containingClassName, MethodDescription description)
Invokes an instance method of a base class, or a private method of a class, using the target object and parameters already on the stack.boolean
PlasticClass. isMethodImplemented(MethodDescription description)
Returns true if this class has an implementation of the indicated method, or a super-class provides a non-abstract implementation.Constructors in org.apache.tapestry5.plastic with parameters of type MethodDescription Constructor Description MethodDescription(MethodDescription description, String[] checkedExceptionTypes)
Convenience constructor for copying a MethodDescription with different exception types. -
Uses of MethodDescription in org.apache.tapestry5.services
-