Package org.springframework.binding.convert.converters

Examples of org.springframework.binding.convert.converters.SpringConvertingConverterAdapter


    targetClass = convertToWrapperClassIfNecessary(targetClass);
    if (targetClass.isAssignableFrom(sourceClass)) {
      return new StaticConversionExecutor(sourceClass, targetClass, new NoOpConverter(sourceClass, targetClass));
    }
    if (delegate.canConvert(sourceClass, targetClass)) {
      return new StaticConversionExecutor(sourceClass, targetClass, new SpringConvertingConverterAdapter(
          sourceClass, targetClass, delegate));
    } else if (parent != null) {
      return parent.getConversionExecutor(sourceClass, targetClass);
    } else {
      throw new ConversionExecutorNotFoundException(sourceClass, targetClass,
View Full Code Here

TOP

Related Classes of org.springframework.binding.convert.converters.SpringConvertingConverterAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.