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

@@ -0,0 +1,69 @@
/*
* 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.message;
import java.util.List;
import org.springframework.validation.AbstractErrors;
import org.springframework.validation.Errors;
/**
* Adapts a MessageContext object to the Spring Errors interface. Allows Spring Validators to record errors that are
* managed by a backing MessageContext.
*
* @author Keith Donald
*/
public class MessageContextErrors extends AbstractErrors {
private MessageContext messageContext;
/**
* Creates a new message context errors adapter.
* @param messageContext the backing message context
*/
public MessageContextErrors(MessageContext messageContext) {
this.messageContext = messageContext;
}
public void reject(String errorCode, Object[] errorArgs, String defaultMessage) {
messageContext.addMessage(new MessageBuilder().error().code(errorCode).defaultText(defaultMessage).build());
}
public void rejectValue(String field, String errorCode, Object[] errorArgs, String defaultMessage) {
messageContext.addMessage(new MessageBuilder().error().code(errorCode).defaultText(defaultMessage).build());
}
public void addAllErrors(Errors errors) {
throw new UnsupportedOperationException("Not expected to be called by a validator");
}
public List getFieldErrors() {
throw new UnsupportedOperationException("Not expected to be called by a validator");
}
public Object getFieldValue(String field) {
throw new UnsupportedOperationException("Not expected to be called by a validator");
}
public List getGlobalErrors() {
throw new UnsupportedOperationException("Not expected to be called by a validator");
}
public String getObjectName() {
throw new UnsupportedOperationException("Not expected to be called by a validator");
}
}