Examples of DecoratorAction


Examples of org.apache.jetspeed.velocity.DecoratorAction

     * decorating a portlet.
     */
    protected DecoratorAction createPortletModeAction(PortletWindow window, String actionName, PortletMode mode,
            RequestContext requestContext, Decoration decoration)
    {
        DecoratorAction action = createDecoratorAction(actionName, decoration);       
       
        PortalURL portalURL = requestContext.getPortalURL();
        action.setAction(portalURL.createPortletURL(window, mode, null, portalURL.isSecure())
                .toString());
        return action;
    }
View Full Code Here

Examples of org.apache.jetspeed.velocity.DecoratorAction

        if (imageExt == null)
        {
            imageExt = ".gif";
        }
        String link = decoration.getResource("images/" + actionName + ".gif");
        return new DecoratorAction(actionName, actionName, link);
    }
View Full Code Here

Examples of org.apache.jetspeed.velocity.DecoratorAction

     * decorating a portlet.
     */
    protected DecoratorAction createWindowStateAction(PortletWindow window, String actionName, WindowState state,
            RequestContext requestContext, Decoration decoration)
    {
        DecoratorAction action = createDecoratorAction(actionName, decoration);
        PortalURL portalURL = requestContext.getPortalURL();
        action.setAction(portalURL.createPortletURL(window, null, state, portalURL.isSecure())
                .toString());
        return action;
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.