Examples of markInitialState()


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

Examples of org.apache.myfaces.trinidad.bean.PropertyMap.markInitialState()

  public void markInitialState()
  {
    PropertyMap map = getPropertyMap(false);
    if (map != null)
      map.markInitialState();
  }

  public Object saveState(FacesContext context)
  {
    PropertyMap map = getPropertyMap(false);
View Full Code Here

Examples of org.apache.myfaces.trinidad.bean.PropertyMap.markInitialState()

  public void markInitialState()
  {
    PropertyMap map = getPropertyMap(false);
    if (map != null)
      map.markInitialState();
  }

  public void clearInitialState()
  {
    PropertyMap map = getPropertyMap(false);
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.