: Download: FAQ: Licensing: Support: Contact ME
LwVCL Home
Introduction
Overview
Screen Shots
On-line Demos
Requirements
Further Plans
Docs
Tutorial
How-to (PDF)
API
FAQ
Download
Latest version

Home > J2SE > API

Overview  Package   Class  Tree  Deprecated  Index  Help 

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.
 

Method Detail

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.


: up