removed uneeded dep between faces and mvc.view

This commit is contained in:
Keith Donald
2008-04-25 12:04:34 +00:00
parent e01ccfb057
commit 03bb2e51b6
6 changed files with 4 additions and 61 deletions

View File

@@ -1,49 +0,0 @@
/*
* Copyright 2004-2008 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.binding.format.adapters;
import java.beans.PropertyEditorSupport;
import org.springframework.binding.format.Formatter;
/**
* Adapts a formatter to the property editor contract.
*
* @author Keith Donald
*/
public class FormatterPropertyEditor extends PropertyEditorSupport {
/**
* The wrapped formatter.
*/
private Formatter formatter;
/**
* Creates a formatter property editor.
* @param formatter the formatter to adapt
*/
public FormatterPropertyEditor(Formatter formatter) {
this.formatter = formatter;
}
public String getAsText() {
return formatter.format(getValue());
}
public void setAsText(String text) throws IllegalArgumentException {
setValue(formatter.parse(text));
}
}

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Contains Formatter adapters, including a adapter that adapts a PropertyEditor to the Formatter interface.
</p>
</body>
</html>

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.binding.format.adapters;
package org.springframework.binding.format.formatters;
import java.beans.PropertyEditor;

View File

@@ -13,12 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.mvc.view;
package org.springframework.binding.message;
import java.util.List;
import org.springframework.binding.message.MessageBuilder;
import org.springframework.binding.message.MessageContext;
import org.springframework.validation.AbstractErrors;
import org.springframework.validation.Errors;

View File

@@ -31,6 +31,7 @@ import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.binding.expression.Expression;
import org.springframework.binding.message.MessageContext;
import org.springframework.binding.message.MessageContextErrors;
import org.springframework.util.ReflectionUtils;
import org.springframework.util.StringUtils;
import org.springframework.validation.Errors;
@@ -39,7 +40,6 @@ import org.springframework.webflow.definition.TransitionableStateDefinition;
import org.springframework.webflow.execution.RequestContext;
import org.springframework.webflow.execution.RequestContextHolder;
import org.springframework.webflow.execution.View;
import org.springframework.webflow.mvc.view.MessageContextErrors;
/**
* The default {@link ActionListener} implementation to be used with Web Flow.

View File

@@ -40,6 +40,7 @@ import org.springframework.binding.mapping.impl.DefaultMapping;
import org.springframework.binding.mapping.impl.DefaultMappingContext;
import org.springframework.binding.message.MessageBuilder;
import org.springframework.binding.message.MessageContext;
import org.springframework.binding.message.MessageContextErrors;
import org.springframework.binding.message.MessageResolver;
import org.springframework.util.ReflectionUtils;
import org.springframework.util.StringUtils;