org.zaval.util
Interface Validationable
- All Known Subinterfaces:
- Layoutable, LayoutContainer, LwComponent, LwComposite, LwContainer, LwDesktop, LwLayer
- All Known Implementing Classes:
- LwView, LwViewMan
- public interface Validationable
This interface can be implemented by the object that should control its validation state.
|
Method Summary |
void |
invalidate()
Invalidates this object. |
boolean |
isValid()
Checks if this object is valid. |
void |
validate()
Validates this object. |
validate
public void validate()
- Validates this object.
invalidate
public void invalidate()
- Invalidates this object.
isValid
public boolean isValid()
- Checks if this object is valid.
- Returns:
- a valid state of the object. The object is valid if the method returns
true.
|