org.aopalliance.intercept
Interface ConstructorInvocation
- Invocation, Joinpoint
public interface ConstructorInvocation
Description of an invocation to a constuctor, given to an
interceptor upon construtor-call.
A constructor invocation is a joinpoint and can be intercepted
by a constructor interceptor.
getConstructor
public Constructor getConstructor()
Gets the constructor being called.
This method is a frienly implementation of the
Joinpoint.getStaticPart()
method (same result).
- the constructor being called.