See: Description
| Interface | Description |
|---|---|
| SimpleBeanValidatorListener |
The definition of an event on
SimpleBeanValidatorEvent
to be fired by a BeanListValidator. |
| Class | Description |
|---|---|
| SimpleBeanValidator<O> |
Validator for a javaBean object.
|
| SimpleBeanValidator.NuitonValidatorContext<O> | |
| SimpleBeanValidatorEvent |
Event to be fired when some messages changed on a given field / scope of a bean.
|
| SimpleBeanValidatorMessage<E extends SimpleBeanValidatorMessage<?>> |
The object to box a validation message.
|
| SimpleBeanValidators |
Useful methods arond
SimpleBeanValidator. |
The SimpleBeanValidator purpose is to validate
a bean, with a listener api to interact with outside world.
SimpleBeanValidatorListener listener = new SimpleBeanValidatorListener() {XXX};
SimpleBeanValidator<O> validator = XXX;
validator.addSimpleBeanValidatorListener(listener);
validator.setBean(o);
SimpleBeanValidator.
SimpleBeanValidator<O> validator = SimpleBeanValidator.newValidator(...);To be continued...
Copyright © 2011-2012 CodeLutin. All Rights Reserved.