Package com.sun.faces.component

Examples of com.sun.faces.component.CompositeComponentStackManager.push()


        if (null == foundCc) {
            foundCc = this.cc;
        }


        return manager.push(foundCc);

    }


    private void popCompositeComponent(FacesContext ctx) {
View Full Code Here


    // For correct evaluation of #{cc.XXX} binding expressions
    CompositeComponentStackManager stackManager = CompositeComponentStackManager.getManager(context);
    boolean pushed = false;
    if (UIComponent.isCompositeComponent(component)) {
      pushed = stackManager.push(component, CompositeComponentStackManager.StackType.TreeCreation);
    }

    // Only resetting the valid flag in the RESTORE_VIEW phase,
    // not during RENDER_RESPONSE
    if (!context.getRenderResponse() && component instanceof EditableValueHolder) {
View Full Code Here

        if (null == foundCc) {
            foundCc = this.cc;
        }


        return manager.push(foundCc);

    }


    private void popCompositeComponent(FacesContext ctx) {
View Full Code Here

        c.pushComponentToEL(ctx.getFacesContext(), c);
        boolean compcompPushed = false;
        CompositeComponentStackManager ccStackManager =
              CompositeComponentStackManager.getManager(ctx.getFacesContext());
        if (UIComponent.isCompositeComponent(c)) {
            compcompPushed = ccStackManager.push(c, TreeCreation);
        }
        // first allow c to get populated
        owner.applyNextHandler(ctx, c);

        // finish cleaning up orphaned children
View Full Code Here

                    cc = manager.findCompositeComponentUsingLocation(ctx, ((ContextualCompositeValueExpression) orig).getLocation());
                }
            }
        }

        return manager.push(cc);

    }


    private void popCompositeComponent(FacesContext ctx) {
View Full Code Here

    private boolean pushCompositeComponent(FacesContext ctx) {

        CompositeComponentStackManager manager =
              CompositeComponentStackManager.getManager(ctx);
        UIComponent cc = manager.findCompositeComponentUsingLocation(ctx, location);
        return manager.push(cc);

    }


    private void popCompositeComponent(FacesContext ctx) {
View Full Code Here

        if (null == foundCc) {
            foundCc = this.cc;
        }


        return manager.push(foundCc);

    }


    private void popCompositeComponent(FacesContext ctx) {
View Full Code Here

        if (null == foundCc) {
            foundCc = this.cc;
        }


        return manager.push(foundCc);

    }


    private void popCompositeComponent(FacesContext ctx) {
View Full Code Here

        if (null == foundCc) {
            foundCc = this.cc;
        }


        return manager.push(foundCc);

    }


    private void popCompositeComponent(FacesContext ctx) {
View Full Code Here

        if (null == foundCc) {
            foundCc = this.cc;
        }


        return manager.push(foundCc);

    }


    private void popCompositeComponent(FacesContext ctx) {
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.