Package org.springframework.webflow.mvc.view

Examples of org.springframework.webflow.mvc.view.AbstractMvcViewFactory


  }

  //-- ViewFactoryCreator
  public ViewFactory createViewFactory(Expression viewId, ExpressionParser expressionParser,
      ConversionService conversionService, BinderConfiguration binderConfiguration) {
    AbstractMvcViewFactory viewFactory = createMvcViewFactory(viewId, expressionParser, conversionService,
        binderConfiguration);
    return viewFactory;
  }
View Full Code Here


  public ViewFactory createViewFactory(Expression viewId, ExpressionParser expressionParser,
      ConversionService conversionService, BinderConfiguration binderConfiguration) {
    if (useSpringBeanBinding) {
      expressionParser = new BeanWrapperExpressionParser(conversionService);
    }
    AbstractMvcViewFactory viewFactory = createMvcViewFactory(viewId, expressionParser, conversionService,
        binderConfiguration);
    if (StringUtils.hasText(eventIdParameterName)) {
      viewFactory.setEventIdParameterName(eventIdParameterName);
    }
    if (StringUtils.hasText(fieldMarkerPrefix)) {
      viewFactory.setFieldMarkerPrefix(fieldMarkerPrefix);
    }
    return viewFactory;
  }
View Full Code Here

      ConversionService conversionService, BinderConfiguration binderConfiguration,
      Validator validator, ValidationHintResolver validationHintResolver) {
    if (useSpringBeanBinding) {
      expressionParser = new BeanWrapperExpressionParser(conversionService);
    }
    AbstractMvcViewFactory viewFactory = createMvcViewFactory(viewId, expressionParser, conversionService,
        binderConfiguration);
    if (StringUtils.hasText(eventIdParameterName)) {
      viewFactory.setEventIdParameterName(eventIdParameterName);
    }
    if (StringUtils.hasText(fieldMarkerPrefix)) {
      viewFactory.setFieldMarkerPrefix(fieldMarkerPrefix);
    }
    viewFactory.setValidator(validator);
    viewFactory.setValidationHintResolver(validationHintResolver);
    return viewFactory;
  }
View Full Code Here

TOP

Related Classes of org.springframework.webflow.mvc.view.AbstractMvcViewFactory

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.