com.softwareag.centrasite.appl.framework.validation
Interface Control

All Superinterfaces:
Constrained, Validatable
All Known Implementing Classes:
DefaultControl

public interface Control
extends Validatable, Constrained

A control is the combination of Validatable, and the Constrained. It is typically a GUI representation, or something like that. Controls are typically created by the ValidatableFactory.


Nested Class Summary
static interface Control.ChangeListener
          Interface of a change listener.
 
Method Summary
 void addChangeListener(Control.ChangeListener pListener)
          Adds a new change listener.
 void removeChangeListener(Control.ChangeListener pListener)
          Removes a change listener.
 
Methods inherited from interface com.softwareag.centrasite.appl.framework.validation.Validatable
addConstraint, getConstraints
 
Methods inherited from interface com.softwareag.centrasite.appl.framework.validation.Constrained
hasErrors, isReadOnly, setErrors, setReadOnly
 

Method Detail

addChangeListener

void addChangeListener(Control.ChangeListener pListener)
Adds a new change listener.


removeChangeListener

void removeChangeListener(Control.ChangeListener pListener)
Removes a change listener.