IN PROGRESS - issue SWF-720: Multiple checkboxes to Collection mapping
http://jira.springframework.org/browse/SWF-720
This commit is contained in:
@@ -513,7 +513,7 @@ public abstract class AbstractMvcView implements View {
|
||||
|
||||
private Formatter getFormatter(Expression target, Class targetClass) {
|
||||
if (formatterRegistry != null) {
|
||||
Formatter formatter = formatterRegistry.getFormatter(target.getExpressionString());
|
||||
Formatter formatter = formatterRegistry.getFormatter(targetClass, target.getExpressionString());
|
||||
if (formatter != null) {
|
||||
return formatter;
|
||||
} else {
|
||||
|
||||
@@ -71,7 +71,8 @@ public class FlowBuilderServicesBeanDefinitionParserTests extends TestCase {
|
||||
throw new UnsupportedOperationException("Auto-generated method stub");
|
||||
}
|
||||
|
||||
public ConversionExecutor[] getConversionExecutorsForSource(Class sourceClass) throws ConversionExecutionException {
|
||||
public ConversionExecutor[] getConversionExecutorsForSource(Class sourceClass)
|
||||
throws ConversionExecutionException {
|
||||
throw new UnsupportedOperationException("Auto-generated method stub");
|
||||
}
|
||||
|
||||
@@ -83,7 +84,7 @@ public class FlowBuilderServicesBeanDefinitionParserTests extends TestCase {
|
||||
throw new UnsupportedOperationException("Auto-generated method stub");
|
||||
}
|
||||
|
||||
public Formatter getFormatter(String id) {
|
||||
public Formatter getFormatter(Class clazz, String id) {
|
||||
throw new UnsupportedOperationException("Auto-generated method stub");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user