| com.opensymphony.xwork.validator.ShortCircuitableValidator
All known Subclasses: com.opensymphony.xwork.validator.validators.ValidatorSupport,
ShortCircuitableValidator | public interface ShortCircuitableValidator (Code) | | This interface should be implemented by validators that can short-circuit the validator queue
that it is in.
author: Mark Woon |
Method Summary | |
public boolean | isShortCircuit() Gets whether this field validator should short circuit the validator queue
it's in if validation fails. | public void | setShortCircuit(boolean shortcircuit) Sets whether this field validator should short circuit the validator queue
it's in if validation fails. |
isShortCircuit | public boolean isShortCircuit()(Code) | | Gets whether this field validator should short circuit the validator queue
it's in if validation fails.
true if this field validator should short circuit on failure,false otherwise |
setShortCircuit | public void setShortCircuit(boolean shortcircuit)(Code) | | Sets whether this field validator should short circuit the validator queue
it's in if validation fails.
Parameters: shortcircuit - true if this field validator should short circuit onfailure, false otherwise |
|
|