|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use MethodInvocation | |
---|---|
org.apache.tapestry5.internal.jpa | [INTERNAL USE ONLY] support classes for the JPA module; API subject to change |
org.apache.tapestry5.internal.plastic | [INTERNAL USE ONLY] Plastic implementation details; API subject to change |
org.apache.tapestry5.ioc.internal.services | [INTERNAL USE ONLY] Tapestry IOC service implementation classes; API subject to change. |
org.apache.tapestry5.plastic | Plastic, Tapestry's component class transformation library based on ASM |
Uses of MethodInvocation in org.apache.tapestry5.internal.jpa |
---|
Methods in org.apache.tapestry5.internal.jpa with parameters of type MethodInvocation | |
---|---|
void |
CommitAfterMethodAdvice.advise(MethodInvocation invocation)
|
Uses of MethodInvocation in org.apache.tapestry5.internal.plastic |
---|
Classes in org.apache.tapestry5.internal.plastic that implement MethodInvocation | |
---|---|
class |
AbstractMethodInvocation
|
Methods in org.apache.tapestry5.internal.plastic that return MethodInvocation | |
---|---|
MethodInvocation |
AbstractMethodInvocation.proceed()
|
MethodInvocation |
AbstractMethodInvocation.setCheckedException(Exception exception)
|
Uses of MethodInvocation in org.apache.tapestry5.ioc.internal.services |
---|
Methods in org.apache.tapestry5.ioc.internal.services with parameters of type MethodInvocation | |
---|---|
void |
LoggingAdvice.advise(MethodInvocation invocation)
|
void |
MethodLogger.entry(MethodInvocation invocation)
Invoked when a method is first entered |
void |
MethodLogger.exit(MethodInvocation invocation)
Invoked when a method exits (possibly returning a value). |
void |
MethodLogger.fail(MethodInvocation invocation,
Throwable t)
Invoked when method invocation instead throws an exception. |
Uses of MethodInvocation in org.apache.tapestry5.plastic |
---|
Methods in org.apache.tapestry5.plastic that return MethodInvocation | |
---|---|
MethodInvocation |
MethodInvocation.proceed()
Proceed with the method invocation, either chaining into the next MethodAdvice added to the method, or
ultimately into the actual method implementation. |
MethodInvocation |
MethodInvocation.setCheckedException(Exception exception)
Sets the checked exception; this can be used to indicate failure for the method, or to cancel the thrown exception (by setting the exception to null). |
MethodInvocation |
MethodInvocation.setParameter(int index,
Object newValue)
Changes a parameter value. |
MethodInvocation |
MethodInvocation.setReturnValue(Object returnValue)
Overrides the return value of the method. |
Methods in org.apache.tapestry5.plastic with parameters of type MethodInvocation | |
---|---|
void |
MethodAdvice.advise(MethodInvocation invocation)
Advise the method, usually invoking proceed() at some point. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |