@Module public class StatelessMethodTailGenerator<X> extends MethodTailGenerator<X>
_factory, _method
NULL
Constructor and Description |
---|
StatelessMethodTailGenerator(StatelessMethodTailFactory<X> factory,
AnnotatedMethod<? super X> method) |
Modifier and Type | Method and Description |
---|---|
void |
generateApplicationException(JavaWriter out,
java.lang.Class<?> exn)
Generates code for an application (checked) exception.
|
void |
generateFinally(JavaWriter out)
Generates the code in the finally block
|
void |
generatePostCall(JavaWriter out)
Generates aspect code after the invocation.
|
void |
generatePreCall(JavaWriter out)
Generates code in the "try" block before the call
|
void |
generatePreTry(JavaWriter out)
Generates code before the "try" block
|
protected AspectBeanFactory<X> |
getBeanFactory() |
protected AnnotatedType<X> |
getBeanType()
Returns the owning bean type.
|
protected AspectFactory<X> |
getFactory() |
protected java.lang.Class<X> |
getJavaClass() |
generateCall, getMethod, isApplicationExceptionThrown
generate, generateAsync, generateBeanConstructor, generateBeanPrologue, generateDestroy, generateEpilogue, generateInject, generateMethodPrologue, generatePostConstruct, generatePostFinally, generatePreDestroy, generateProxyConstructor, generateSystemException
public StatelessMethodTailGenerator(StatelessMethodTailFactory<X> factory, AnnotatedMethod<? super X> method)
public void generatePreTry(JavaWriter out) throws java.io.IOException
retType myMethod(...)
{
[pre-try]
try {
...
}
generatePreTry
in interface AspectGenerator<X>
generatePreTry
in class NullGenerator<X>
java.io.IOException
protected AspectFactory<X> getFactory()
protected AspectBeanFactory<X> getBeanFactory()
protected AnnotatedType<X> getBeanType()
protected java.lang.Class<X> getJavaClass()
public void generatePreCall(JavaWriter out) throws java.io.IOException
retType myMethod(...)
{
...
try {
[pre-call]
ret = super.myMethod(...)
...
}
generatePreCall
in interface AspectGenerator<X>
generatePreCall
in class NullGenerator<X>
java.io.IOException
public void generatePostCall(JavaWriter out) throws java.io.IOException
retType myMethod(...)
{
...
try {
...
ret = super.myMethod(...)
[post-call]
return ret;
} finally {
...
}
}
generatePostCall
in interface AspectGenerator<X>
generatePostCall
in class NullGenerator<X>
java.io.IOException
public void generateApplicationException(JavaWriter out, java.lang.Class<?> exn) throws java.io.IOException
generateApplicationException
in interface AspectGenerator<X>
generateApplicationException
in class NullGenerator<X>
java.io.IOException
public void generateFinally(JavaWriter out) throws java.io.IOException
myRet myMethod(...)
{
try {
...
} finally {
[finally]
}
generateFinally
in interface AspectGenerator<X>
generateFinally
in class NullGenerator<X>
java.io.IOException