Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1599 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
19 changed files with 50 additions and 173 deletions
@ -1,35 +0,0 @@
@@ -1,35 +0,0 @@
|
||||
/* |
||||
* Copyright 2004-2009 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.ui.binding.support; |
||||
|
||||
import org.springframework.ui.binding.config.Condition; |
||||
import org.springframework.ui.format.Formatter; |
||||
|
||||
public interface BindingRule { |
||||
|
||||
Formatter<?> getFormatter(); |
||||
|
||||
Formatter<?> getKeyFormatter(); |
||||
|
||||
Formatter<?> getElementFormatter(); |
||||
|
||||
Condition getEditableCondition(); |
||||
|
||||
Condition getEnabledCondition(); |
||||
|
||||
Condition getVisibleCondition(); |
||||
|
||||
} |
||||
@ -1,44 +0,0 @@
@@ -1,44 +0,0 @@
|
||||
/* |
||||
* Copyright 2004-2009 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.ui.binding.support; |
||||
|
||||
import java.text.ParseException; |
||||
import java.util.Locale; |
||||
|
||||
import org.springframework.ui.format.Formatter; |
||||
|
||||
@SuppressWarnings("unchecked") |
||||
// TODO should this delegate to type converter...
|
||||
class DefaultFormatter implements Formatter { |
||||
|
||||
public static final Formatter INSTANCE = new DefaultFormatter(); |
||||
|
||||
public String format(Object object, Locale locale) { |
||||
if (object == null) { |
||||
return ""; |
||||
} else { |
||||
return object.toString(); |
||||
} |
||||
} |
||||
|
||||
public Object parse(String formatted, Locale locale) throws ParseException { |
||||
if (formatted == "") { |
||||
return null; |
||||
} else { |
||||
return formatted; |
||||
} |
||||
} |
||||
} |
||||
@ -1,64 +0,0 @@
@@ -1,64 +0,0 @@
|
||||
/* |
||||
* Copyright 2004-2009 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.ui.binding.support; |
||||
|
||||
/** |
||||
* Specifies the element type of a generic collection type. |
||||
* @author Keith Donald |
||||
* @since 3.0 |
||||
*/ |
||||
public class GenericCollectionPropertyType { |
||||
|
||||
private Class<?> collectionType; |
||||
|
||||
private Class<?> elementType; |
||||
|
||||
/** |
||||
* Creates a new generic collection property type |
||||
* @param collectionType the collection type |
||||
* @param elementType the element type |
||||
*/ |
||||
public GenericCollectionPropertyType(Class<?> collectionType, Class<?> elementType) { |
||||
this.collectionType = collectionType; |
||||
this.elementType = elementType; |
||||
} |
||||
|
||||
/** |
||||
* The collection type. |
||||
*/ |
||||
public Class<?> getCollectionType() { |
||||
return collectionType; |
||||
} |
||||
|
||||
/** |
||||
* The element type. |
||||
*/ |
||||
public Class<?> getElementType() { |
||||
return elementType; |
||||
} |
||||
|
||||
public boolean equals(Object o) { |
||||
if (!(o instanceof GenericCollectionPropertyType)) { |
||||
return false; |
||||
} |
||||
GenericCollectionPropertyType type = (GenericCollectionPropertyType) o; |
||||
return collectionType.equals(type.collectionType) && elementType.equals(type.elementType); |
||||
} |
||||
|
||||
public int hashCode() { |
||||
return collectionType.hashCode() + elementType.hashCode(); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue