Package org.richfaces.component

Examples of org.richfaces.component.MetaComponentProcessor


     */
    public VisitResult visit(VisitContext context, UIComponent target) {
        if (target instanceof MetaComponentProcessor) {
            String metaComponentId = (String) facesContext.getAttributes().get(ExtendedVisitContext.META_COMPONENT_ID);
            if (metaComponentId != null) {
                MetaComponentProcessor executor = (MetaComponentProcessor) target;
                executor.processMetaComponent(facesContext, metaComponentId);

                // Once we visit a component, there is no need to visit
                // its children, since processDecodes/Validators/Updates and
                // encodeAll() already traverse the subtree. We return
                // VisitResult.REJECT to supress the subtree visit.
View Full Code Here

TOP

Related Classes of org.richfaces.component.MetaComponentProcessor

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.