renamed executeConversion to simply convert for readibility

This commit is contained in:
Keith Donald
2009-05-11 21:25:33 +00:00
parent c3f54b4cb4
commit 50985d5aa9
5 changed files with 16 additions and 16 deletions

View File

@@ -18,7 +18,7 @@ package org.springframework.core.convert;
/**
* A service interface for type conversion. This is the entry point into the convert system.
* <p>
* Call {@link #executeConversion(Object, TypeDescriptor)} to perform a thread-safe type conversion using
* Call {@link #convert(Object, TypeDescriptor)} to perform a thread-safe type conversion using
* this system.
*
* @author Keith Donald
@@ -43,6 +43,6 @@ public interface ConversionService {
* source to an instance of targetType
* @throws ConversionException if an exception occurred during the conversion process
*/
public Object executeConversion(Object source, TypeDescriptor targetType);
public Object convert(Object source, TypeDescriptor targetType);
}

View File

@@ -140,7 +140,7 @@ public class GenericConversionService implements ConversionService {
}
}
public Object executeConversion(Object source, TypeDescriptor targetType) {
public Object convert(Object source, TypeDescriptor targetType) {
if (source == null) {
return null;
}
@@ -149,7 +149,7 @@ public class GenericConversionService implements ConversionService {
return executor.execute(source);
} else {
if (parent != null) {
return parent.executeConversion(source, targetType);
return parent.convert(source, targetType);
} else {
throw new ConverterNotFoundException(source.getClass(), targetType,
"No converter found that can convert from sourceType [" + source.getClass().getName()