Package org.springframework.webflow.engine

Examples of org.springframework.webflow.engine.ViewState.addVariables()


   */
  public State createViewState(String id, Flow flow, ViewVariable[] variables, Action[] entryActions,
      ViewFactory viewFactory, Boolean redirect, boolean popup, Action[] renderActions, Transition[] transitions,
      FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes) {
    ViewState viewState = new ViewState(flow, id, viewFactory);
    viewState.addVariables(variables);
    viewState.setRedirect(redirect);
    viewState.setPopup(popup);
    viewState.getRenderActionList().addAll(renderActions);
    configureCommonProperties(viewState, entryActions, transitions, exceptionHandlers, exitActions, attributes);
    return viewState;
View Full Code Here


   */
  public State createViewState(String id, Flow flow, ViewVariable[] variables, Action[] entryActions,
      ViewFactory viewFactory, Boolean redirect, boolean popup, Action[] renderActions, Transition[] transitions,
      FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap<?> attributes) {
    ViewState viewState = new ViewState(flow, id, viewFactory);
    viewState.addVariables(variables);
    viewState.setRedirect(redirect);
    viewState.setPopup(popup);
    viewState.getRenderActionList().addAll(renderActions);
    configureCommonProperties(viewState, entryActions, transitions, exceptionHandlers, exitActions, attributes);
    return viewState;
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.