binder addition
This commit is contained in:
@@ -18,6 +18,7 @@ import org.springframework.faces.webflow.JsfManagedBeanAwareELExpressionParser;
|
||||
import org.springframework.faces.webflow.JsfViewFactoryCreator;
|
||||
import org.springframework.webflow.engine.builder.ViewFactoryCreator;
|
||||
import org.springframework.webflow.engine.builder.support.FlowBuilderServices;
|
||||
import org.springframework.webflow.engine.model.BinderModel;
|
||||
import org.springframework.webflow.execution.ViewFactory;
|
||||
import org.springframework.webflow.expression.el.WebFlowELExpressionParser;
|
||||
|
||||
@@ -63,7 +64,7 @@ public class FacesFlowBuilderServicesBeanDefinitionParserTests extends TestCase
|
||||
public static class TestViewFactoryCreator implements ViewFactoryCreator {
|
||||
|
||||
public ViewFactory createViewFactory(Expression viewIdExpression, ExpressionParser expressionParser,
|
||||
ConversionService conversionService) {
|
||||
ConversionService conversionService, BinderModel binderModel) {
|
||||
throw new UnsupportedOperationException("Auto-generated method stub");
|
||||
}
|
||||
|
||||
|
||||
@@ -80,9 +80,7 @@ public class DojoDecorationRendererTests extends TestCase {
|
||||
childComponent.setConverter(converter);
|
||||
childComponent.setId("foo");
|
||||
Calendar cal = Calendar.getInstance(Locale.US);
|
||||
cal.set(Calendar.MONTH, Calendar.NOVEMBER);
|
||||
cal.set(Calendar.DAY_OF_MONTH, 21);
|
||||
cal.set(Calendar.YEAR, 1977);
|
||||
cal.set(1977, Calendar.NOVEMBER, 21, 12, 0);
|
||||
childComponent.setValue(cal.getTime());
|
||||
DojoDecorationRenderer renderer = new DojoDecorationRenderer();
|
||||
String nodeAttributes = renderer.getNodeAttributesAsString(jsf.facesContext(), childComponent);
|
||||
|
||||
Reference in New Issue
Block a user