org.aopalliance.intercept

Interface ConstructorInvocation

All Superinterfaces:
Invocation, Joinpoint

public interface ConstructorInvocation
extends Invocation

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.

See Also:
ConstructorInterceptor

Method Summary

Constructor
getConstructor()
Gets the constructor being called.

Methods inherited from interface org.aopalliance.intercept.Invocation

getArguments

Methods inherited from interface org.aopalliance.intercept.Joinpoint

getStaticPart, getThis, proceed

Method Details

getConstructor

public Constructor getConstructor()
Returns:
the constructor being called.