| java.lang.Object org.apache.tapestry.internal.services.ComponentInvocation
ComponentInvocation | public class ComponentInvocation (Code) | | Represents an invocation for a page or a component in the current application. This information
is extracted from incoming URLs for a running application (or created by the
PageTester .
Each invocation may provide a context (Object[]) and parameters to the invocation target.
|
ComponentInvocation | public ComponentInvocation(InvocationTarget target, String[] context, String[] activationContext)(Code) | | Parameters: target - identifies the target of the event: a component with a page Parameters: context - context information supplied by the component to be provided back when the eventon the component is triggered, or contains the activation context when theinvocation is for a page render request Parameters: activationContext - page activation context for the page containing the component, supplied via apassivate event to the page's root component (used when an action componentinvocation is for a page with an activation context) |
buildURI | public String buildURI(boolean isForm)(Code) | | A path taking the format target-path/e1/e2?&q1=v1&q2=v2. where thetarget-path is the path provided by the invocation target; e1 and e2 areelements of the context; q1 and q2 are the parameters. |
getActivationContext | public String[] getActivationContext()(Code) | | |
|
|