fr.esrf.tangoatk.widget.util
Interface IApplicable

All Superinterfaces:
IControlee
All Known Implementing Classes:
ConvolveFilter

public interface IApplicable
extends IControlee

IApplicable is an interface which tells the ButtonBar that the widget implementing this interface needs an apply and a cancel button in addition to the ok button demanded by the IControlee

See Also:
ButtonBar, IControlee

Method Summary
 void apply()
          apply is called when the user presses the apply button.
 void cancel()
          cancel is called when the user presses the cancel button.
 
Methods inherited from interface fr.esrf.tangoatk.widget.util.IControlee
ok
 

Method Detail

apply

void apply()
apply is called when the user presses the apply button. Expected behaviour is to set all values on the model of the widget


cancel

void cancel()
cancel is called when the user presses the cancel button. Expected behaviour is to close the window, eg getRootPane().getParent().setVisible(false);