Package adams.gui.chooser
Interface AbstractChooserPanel.ChooseListener
-
- All Known Implementing Classes:
AdvancedTab
- Enclosing class:
- AbstractChooserPanel<T>
public static interface AbstractChooserPanel.ChooseListener
Interface for classes that listen to "choose" events.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterChoose(AbstractChooserPanel panel)
Gets called after the user chose a value.void
beforeChoose(AbstractChooserPanel panel)
Gets called before the user chooses a value.
-
-
-
Method Detail
-
beforeChoose
void beforeChoose(AbstractChooserPanel panel)
Gets called before the user chooses a value.- Parameters:
panel
- the panel that triggered the event
-
afterChoose
void afterChoose(AbstractChooserPanel panel)
Gets called after the user chose a value.- Parameters:
panel
- the panel that triggered the event
-
-