CustomNumberEditor generically declares numberClass as subclass of Number (matching NumberUtils)
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4372 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
326c5f4b9b
commit
766b189fd0
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2009 the original author or authors.
|
* Copyright 2002-2011 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -46,7 +46,7 @@ import org.springframework.util.StringUtils;
|
||||||
*/
|
*/
|
||||||
public class CustomNumberEditor extends PropertyEditorSupport {
|
public class CustomNumberEditor extends PropertyEditorSupport {
|
||||||
|
|
||||||
private final Class numberClass;
|
private final Class<? extends Number> numberClass;
|
||||||
|
|
||||||
private final NumberFormat numberFormat;
|
private final NumberFormat numberFormat;
|
||||||
|
|
||||||
|
|
@ -67,7 +67,7 @@ public class CustomNumberEditor extends PropertyEditorSupport {
|
||||||
* @see Integer#valueOf
|
* @see Integer#valueOf
|
||||||
* @see Integer#toString
|
* @see Integer#toString
|
||||||
*/
|
*/
|
||||||
public CustomNumberEditor(Class numberClass, boolean allowEmpty) throws IllegalArgumentException {
|
public CustomNumberEditor(Class<? extends Number> numberClass, boolean allowEmpty) throws IllegalArgumentException {
|
||||||
this(numberClass, null, allowEmpty);
|
this(numberClass, null, allowEmpty);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -85,7 +85,7 @@ public class CustomNumberEditor extends PropertyEditorSupport {
|
||||||
* @see java.text.NumberFormat#parse
|
* @see java.text.NumberFormat#parse
|
||||||
* @see java.text.NumberFormat#format
|
* @see java.text.NumberFormat#format
|
||||||
*/
|
*/
|
||||||
public CustomNumberEditor(Class numberClass, NumberFormat numberFormat, boolean allowEmpty)
|
public CustomNumberEditor(Class<? extends Number> numberClass, NumberFormat numberFormat, boolean allowEmpty)
|
||||||
throws IllegalArgumentException {
|
throws IllegalArgumentException {
|
||||||
|
|
||||||
if (numberClass == null || !Number.class.isAssignableFrom(numberClass)) {
|
if (numberClass == null || !Number.class.isAssignableFrom(numberClass)) {
|
||||||
|
|
@ -101,7 +101,6 @@ public class CustomNumberEditor extends PropertyEditorSupport {
|
||||||
* Parse the Number from the given text, using the specified NumberFormat.
|
* Parse the Number from the given text, using the specified NumberFormat.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
public void setAsText(String text) throws IllegalArgumentException {
|
public void setAsText(String text) throws IllegalArgumentException {
|
||||||
if (this.allowEmpty && !StringUtils.hasText(text)) {
|
if (this.allowEmpty && !StringUtils.hasText(text)) {
|
||||||
// Treat empty String as null value.
|
// Treat empty String as null value.
|
||||||
|
|
@ -121,7 +120,6 @@ public class CustomNumberEditor extends PropertyEditorSupport {
|
||||||
* Coerce a Number value into the required target class, if necessary.
|
* Coerce a Number value into the required target class, if necessary.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
public void setValue(Object value) {
|
public void setValue(Object value) {
|
||||||
if (value instanceof Number) {
|
if (value instanceof Number) {
|
||||||
super.setValue(NumberUtils.convertNumberToTargetClass((Number) value, this.numberClass));
|
super.setValue(NumberUtils.convertNumberToTargetClass((Number) value, this.numberClass));
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2008 the original author or authors.
|
* Copyright 2002-2011 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -424,11 +424,6 @@ public class CustomEditorTests {
|
||||||
new CustomNumberEditor(null, true);
|
new CustomNumberEditor(null, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(expected=IllegalArgumentException.class)
|
|
||||||
public void testCustomNumberEditorCtorWithNonNumberType() throws Exception {
|
|
||||||
new CustomNumberEditor(String.class, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testCustomNumberEditorWithAllowEmpty() {
|
public void testCustomNumberEditorWithAllowEmpty() {
|
||||||
NumberFormat nf = NumberFormat.getNumberInstance(Locale.GERMAN);
|
NumberFormat nf = NumberFormat.getNumberInstance(Locale.GERMAN);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue