Package org.springframework.binding.mapping.results

Examples of org.springframework.binding.mapping.results.Success


   * @param originalValue the original value from the source of the mapping
   * @param mappedValue the successfully mapped value, which may be different from the original if a type conversion
   * was performed
   */
  public void setSuccessResult(Object originalValue, Object mappedValue) {
    add(new Success(currentMapping, mappedValue, originalValue));
  }
View Full Code Here


   * @param originalValue the original value from the source of the mapping
   * @param mappedValue the successfully mapped value, which may be different from the original if a type conversion
   * was performed
   */
  public void setSuccessResult(Object originalValue, Object mappedValue) {
    add(new Success(currentMapping, mappedValue, originalValue));
  }
View Full Code Here

TOP

Related Classes of org.springframework.binding.mapping.results.Success

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.