Package org.springframework.webflow.mvc.view

Source Code of org.springframework.webflow.mvc.view.DefaultBindingModelTests

package org.springframework.webflow.mvc.view;

import org.springframework.binding.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.webflow.expression.spel.WebFlowSpringELExpressionParser;

public class DefaultBindingModelTests extends AbstractBindingModelTests {

  protected ExpressionParser getExpressionParser() {
    return new WebFlowSpringELExpressionParser(new SpelExpressionParser());
  }

}
TOP

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

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.