Interface LookAndFeelListener
public interface LookAndFeelListener
A listener which observes a
LookAndFeelList and gets informed whenever
the contents of the list change.- Author:
- Benjamin Sigg
-
Method Summary
Modifier and TypeMethodDescriptionvoiddefaultLookAndFeelChanged(LookAndFeelList list, LookAndFeelList.Info lookAndFeel) Called when the default-LookAndFeelwas exchanged.voidlookAndFeelAdded(LookAndFeelList list, LookAndFeelList.Info lookAndFeel) Called when a selectableLookAndFeelwas added tolist.voidlookAndFeelChanged(LookAndFeelList list, LookAndFeelList.Info lookAndFeel) Called when the currentLookAndFeelwas exchanged.voidlookAndFeelRemoved(LookAndFeelList list, LookAndFeelList.Info lookAndFeel) Called when a selectableLookAndFeelwas removed fromlist.voidsystemLookAndFeelChanged(LookAndFeelList list, LookAndFeelList.Info lookAndFeel) Called when the system-LookAndFeelwas exchanged.
-
Method Details
-
lookAndFeelChanged
Called when the currentLookAndFeelwas exchanged.- Parameters:
list- the source of the eventlookAndFeel- the new current LookAndFeel
-
lookAndFeelAdded
Called when a selectableLookAndFeelwas added tolist.- Parameters:
list- the source of the eventlookAndFeel- the new LookAndFeel
-
lookAndFeelRemoved
Called when a selectableLookAndFeelwas removed fromlist.- Parameters:
list- the source of the eventlookAndFeel- the removed LookAndFeel
-
defaultLookAndFeelChanged
Called when the default-LookAndFeelwas exchanged.- Parameters:
list- the source of the eventlookAndFeel- the new LookAndFeel
-
systemLookAndFeelChanged
Called when the system-LookAndFeelwas exchanged.- Parameters:
list- the source of the eventlookAndFeel- the new LookAndFeel
-