Package org.apache.tapestry.internal.services

Examples of org.apache.tapestry.internal.services.ActionLinkTarget


    {
        try
        {
            InvocationTarget target = invocation.getTarget();

            ActionLinkTarget actionLinkTarget = Defense.cast(target, ActionLinkTarget.class, "target");

            ComponentEventRequestParameters parameters = new ComponentEventRequestParameters(
                    actionLinkTarget.getPageName(),

                    actionLinkTarget.getPageName(),

                    actionLinkTarget.getComponentNestedId(),

                    actionLinkTarget.getEventType(),

                    new URLEventContext(_contextValueEncoder, invocation.getActivationContext()),

                    new URLEventContext(_contextValueEncoder, invocation.getContext()));
View Full Code Here


    {
        try
        {
            InvocationTarget target = invocation.getTarget();

            ActionLinkTarget actionLinkTarget = Defense.cast(
                    target,
                    ActionLinkTarget.class,
                    "target");

            return _componentActionRequestHandler.handle(actionLinkTarget.getPageName(), actionLinkTarget
                    .getComponentNestedId(), actionLinkTarget.getEventType(), invocation
                    .getContext(), invocation.getActivationContext());
        }
        finally
        {
            _registry.cleanupThread();
View Full Code Here

    {
        try
        {
            InvocationTarget target = invocation.getTarget();

            ActionLinkTarget actionLinkTarget = Defense.cast(target, ActionLinkTarget.class, "target");

            _componentActionRequestHandler.handle(actionLinkTarget.getPageName(), actionLinkTarget
                    .getComponentNestedId(), actionLinkTarget.getEventType(), invocation
                    .getContext(), invocation.getActivationContext());
        }
        catch (IOException e)
        {
            throw new RuntimeException(e);
View Full Code Here

    {
        try
        {
            InvocationTarget target = invocation.getTarget();

            ActionLinkTarget actionLinkTarget = Defense.cast(target, ActionLinkTarget.class, "target");

            ComponentEventRequestParameters parameters = new ComponentEventRequestParameters(
                    actionLinkTarget.getPageName(),

                    actionLinkTarget.getPageName(),

                    actionLinkTarget.getComponentNestedId(),

                    actionLinkTarget.getEventType(),

                    invocation.getActivationContext(),

                    invocation.getContext());
View Full Code Here

TOP

Related Classes of org.apache.tapestry.internal.services.ActionLinkTarget

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.