Interface ScreenChangedListener
- All Superinterfaces:
EventListener
Listener interface for receiving screen changed events.
The class that is interested in processing a screen changed event
implements this interface, and the object created with that class
is registered with a component using the component's
addScreenChangedListener method. When the screen changed
event occurs, that object's changed method is invoked.-
Method Summary
Modifier and TypeMethodDescriptionvoidchanged(ScreenChangedEvent event) Invoked when the screen has changed.
-
Method Details
-
changed
Invoked when the screen has changed.- Parameters:
event- the event that contains information about the screen change
-