Package javax.faces.component

Examples of javax.faces.component.UIViewRoot.markInitialState()


                MethodExpression m = this.afterPhase
                        .getMethodExpression(ctx, null, LISTENER_SIG);
                root.setAfterPhaseListener(m);
            }
            if (Boolean.TRUE.equals(ctx.getFacesContext().getAttributes().get("partialStateSaving"))) {
                root.markInitialState();
            }
        }

        this.nextHandler.apply(ctx, parent);
    }
View Full Code Here


            // view id.  The partial state saving check below requires this.
            assert(null != viewId);
            assert(0 < viewId.length());

            if (StateContext.getStateContext(context).partialStateSaving(context, root.getViewId())) {
                root.markInitialState();
            }
        }

        this.nextHandler.apply(ctx, parent);
    }
View Full Code Here

            // view id.  The partial state saving check below requires this.
            assert(null != viewId);
            assert(0 < viewId.length());

            if (StateContext.getStateContext(context).partialStateSaving(context, root.getViewId())) {
                root.markInitialState();
            }
        }

        this.nextHandler.apply(ctx, parent);
    }
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.