Package xal.app.knobs
Interface KnobsControllerListener
-
- All Known Implementing Classes:
KnobListModel
public interface KnobsControllerListenerinterface of knobs controller events
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidselectedGroupChanged(KnobsController source, KnobGroup group)Handle the event indicating that the controller has a new selected group.voidselectedKnobsChanged(KnobsController source, List<Knob> knobs)Handle the event indicating that the controller has a new list of selected knobs.
-
-
-
Method Detail
-
selectedGroupChanged
void selectedGroupChanged(KnobsController source, KnobGroup group)
Handle the event indicating that the controller has a new selected group.- Parameters:
source- The controllergroup- The new selected group
-
selectedKnobsChanged
void selectedKnobsChanged(KnobsController source, List<Knob> knobs)
Handle the event indicating that the controller has a new list of selected knobs.- Parameters:
source- The controllerknobs- the new list of selected knobs
-
-