站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 2.0.5 API 文档英文版

BindingResultUtils (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版

The Spring Framework

org.springframework.validation
Class BindingResultUtils

java.lang.Object
  extended by org.springframework.validation.BindingResultUtils

public abstract class BindingResultUtils
extends Object

Convenience methods for looking up BindingResults in a model Map.

Since:
2.0
Author:
Juergen Hoeller
See Also:
BindingResult.MODEL_KEY_PREFIX

Constructor Summary
BindingResultUtils()
           
 
Method Summary
static BindingResult getBindingResult(Map model, String name)
          Find the BindingResult for the given name in the given model.
static BindingResult getRequiredBindingResult(Map model, String name)
          Find a required BindingResult for the given name in the given model.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BindingResultUtils

public BindingResultUtils()
Method Detail

getBindingResult

public static BindingResult getBindingResult(Map model,
                                             String name)
Find the BindingResult for the given name in the given model.

Parameters:
model - the model to search
name - the name of the target object to find a BindingResult for
Returns:
the BindingResult, or null if none found
Throws:
IllegalStateException - if the attribute found is not of type BindingResult

getRequiredBindingResult

public static BindingResult getRequiredBindingResult(Map model,
                                                     String name)
Find a required BindingResult for the given name in the given model.

Parameters:
model - the model to search
name - the name of the target object to find a BindingResult for
Returns:
the BindingResult (never null)
Throws:
IllegalStateException - if no BindingResult found

The Spring Framework

Copyright © 2002-2007 The Spring Framework.