Package org.eclipse.swt.events
Class MenuAdapter
java.lang.Object
org.eclipse.swt.events.MenuAdapter
- All Implemented Interfaces:
EventListener
,MenuListener
,SWTEventListener
This adapter class provides default implementations for the
methods described by the
MenuListener
interface.
Classes that wish to deal with MenuEvent
s can
extend this class and override only the methods which they are
interested in.
An alternative to this class are the static helper methods
MenuListener.menuHiddenAdapter(java.util.function.Consumer)
and
MenuListener.menuShownAdapter(java.util.function.Consumer)
,
which accept a lambda expression or a method reference that implements the event consumer.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Sent when a menu is hidden.void
Sent when a menu is shown.
-
Constructor Details
-
MenuAdapter
public MenuAdapter()
-
-
Method Details