fixed documentation bugs

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2836 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller 2010-01-19 14:40:50 +00:00
parent ca644b743a
commit 906024145a
2 changed files with 2 additions and 2 deletions

View File

@ -476,7 +476,7 @@ Boolean b = simple.booleanList.get(0);
<para>The types of literal expressions supported are strings, dates, <para>The types of literal expressions supported are strings, dates,
numeric values (int, real, and hex), boolean and null. Strings are numeric values (int, real, and hex), boolean and null. Strings are
delimited by single quotes. To put a single quote itself in a string use delimited by single quotes. To put a single quote itself in a string use
the backslash character. The following listing shows simple usage of two single quote characters. The following listing shows simple usage of
literals. Typically they would not be used in isolation like this, but literals. Typically they would not be used in isolation like this, but
as part of a more complex expression, for example using a literal on one as part of a more complex expression, for example using a literal on one
side of a logical comparison operator.</para> side of a logical comparison operator.</para>

View File

@ -851,7 +851,7 @@ package org.springframework.core.convert.converter;
public interface GenericConverter { public interface GenericConverter {
public Class<?>[][] getConvertibleTypes(); public Set<ConvertiblePair> getConvertibleTypes();
Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType); Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType);