Package org.apache.jetspeed.om.common

Examples of org.apache.jetspeed.om.common.MutableDisplayName


        if (displayNames == null)
        {
            displayNames = new ArrayList();
        }
        DNListWrapper.setInnerCollection(displayNames);
        MutableDisplayName dn = new PortletDisplayNameImpl();
        dn.setLocale(locale);
        dn.setDisplayName(displayName);
        DNListWrapper.addDisplayName(dn);
    }
View Full Code Here


            displayNames = new ArrayList();
        }
        DNCollWrapper.setInnerCollection(displayNames);
        try
        {
            MutableDisplayName dn = new WebAppDisplayNameImpl();
              
            dn.setLocale(locale);
            dn.setDisplayName(name);
            DNCollWrapper.addDisplayName(dn);
        }
        catch (Exception e)
        {
            String msg = "Unable to instantiate DisplayName implementor, " + e.toString();
View Full Code Here

    /**
     * @see java.util.Collection#add(java.lang.Object)
     */
    public boolean add(Object o)
    {
        MutableDisplayName name = (MutableDisplayName) o;

        return innerCollection.add(o);
    }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.om.common.MutableDisplayName

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.