Methods Summary |
---|
public java.util.List | getAllInvocations()
|
public ComponentInvocation | getCurrentInvocation()Returns the current Invocation object associated with the current thread
|
public ComponentInvocation | getPreviousInvocation()Returns the previous Invocation object associated with the current
thread.
Returns null if there is none. This is typically used when a component A
calls another component B within the same VM. In this case, it might be
necessary to obtain information related to both component A using
getPreviousInvocation() and B using getCurrentInvocation()
|
public boolean | isInvocationStackEmpty()return true iff no invocations on the stack for this thread
|
public boolean | isStartupInvocation()
|
public void | postInvoke(ComponentInvocation inv)To be called by a Container to indicate that the Container has
just completed the invocation of a method on a component.
The preInvoke and postInvoke must be called in pairs and well-nested.
|
public void | preInvoke(ComponentInvocation inv)To be called by a Container to indicate that the Container is
about to invoke a method on a component.
The preInvoke and postInvoke must be called in pairs and well-nested.
|