Package org.apache.jetspeed.aggregator

Examples of org.apache.jetspeed.aggregator.PortletContent


    @SuppressWarnings("unchecked")
    public List<KeyValue<String, HeadElement>> getHeadElements()
    {
        if (headElements == null && fragment != null && fragment.getPortletContent() != null)
        {
            PortletContent portletContent = fragment.getPortletContent();
           
            if (portletContent.isComplete() || !Fragment.PORTLET.equals(fragment.getType()))
            {
                // org.apache.commons.collections.list.TreeList is well-optimized for
                // fast insertions at any index in the list.
                // Refer to description in the javadoc for details.
                headElements = new TreeList();
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.aggregator.PortletContent

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.