Package org.jasig.portal.portlets

Examples of org.jasig.portal.portlets.AttributeFactory


     * @param attributes the attributes to set
     */
    @SuppressWarnings("unchecked")
    public void setAttributes(Map<String, Attribute> attributes) {
        if (attributes == null) {
            this.attributes = LazyMap.decorate(new HashMap<String, Attribute>(), new AttributeFactory());
        }
        else {
            this.attributes = attributes;
        }
    }
View Full Code Here

TOP

Related Classes of org.jasig.portal.portlets.AttributeFactory

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.