Package org.springframework.binding.mapping.results

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


   * Indicates the current mapping ended with a 'required' error. This means the value obtained from the source was
   * empty, and the mapping could not be completed as a result.
   * @param originalValue the original source value that is empty (null or an empty string, typically)
   */
  public void setRequiredErrorResult(Object originalValue) {
    add(new RequiredError(currentMapping, originalValue));
  }
View Full Code Here


   * Indicates the current mapping ended with a 'required' error. This means the value obtained from the source was
   * empty, and the mapping could not be completed as a result.
   * @param originalValue the original source value that is empty (null or an empty string, typically)
   */
  public void setRequiredErrorResult(Object originalValue) {
    add(new RequiredError(currentMapping, originalValue));
  }
View Full Code Here

TOP

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

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.