Examples of LayoutAspectDescription


Examples of org.apache.cocoon.portal.layout.LayoutAspectDescription

   
    /**
     * Return the description for an aspect
     */
    public LayoutAspectDescription getAspect(String name) {
        LayoutAspectDescription desc = null;
        Iterator i = this.aspects.iterator();
        while (desc == null && i.hasNext() ) {
            LayoutAspectDescription current = (LayoutAspectDescription)i.next();
            if ( name.equals(current.getName())) {
                desc = current;
            }
        }
        return desc;
    }
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.