From 0c85f3df55d72fecf35a6a23334958eef6cd9d75 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Sat, 16 May 2009 18:46:56 +0000 Subject: [PATCH] doc polishing --- .../java/org/springframework/core/convert/TypeConverter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.springframework.core/src/main/java/org/springframework/core/convert/TypeConverter.java b/org.springframework.core/src/main/java/org/springframework/core/convert/TypeConverter.java index fe7989c30e..f337df81eb 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/convert/TypeConverter.java +++ b/org.springframework.core/src/main/java/org/springframework/core/convert/TypeConverter.java @@ -37,7 +37,7 @@ public interface TypeConverter { /** * Returns true if objects of sourceType can be converted to the type of the conversion point. * @param source the source to convert from (may be null) - * @param point context about the target type to convert to + * @param point context about the point where conversion would occur * @return true if a conversion can be performed, false if not */ boolean canConvert(Class sourceType, ConversionPoint point); @@ -54,7 +54,7 @@ public interface TypeConverter { /** * Convert the source to type T needed by the conversion point. * @param source the source to convert from (may be null) - * @param point a binding point where a conversion is required + * @param point context about the point where conversion will occur * @return the converted object, an instance of {@link ConversionPoint#getType()}, or null if a null source was provided * @throws ConvertException if an exception occurred */