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
Version:
$Revision$
Author:
Erik Assum
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply is called when the user presses the apply button.
    void
    cancel is called when the user presses the cancel button.

    Methods inherited from interface fr.esrf.tangoatk.widget.util.IControlee

    ok
  • Method Details

    • 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);