Uses of Interface
org.eclipse.swt.accessibility.AccessibleListener
-
Packages that use AccessibleListener Package Description org.eclipse.swt.accessibility -
-
Uses of AccessibleListener in org.eclipse.swt.accessibility
Classes in org.eclipse.swt.accessibility that implement AccessibleListener Modifier and Type Class Description class
AccessibleAdapter
This adapter class provides default implementations for the methods described by theAccessibleListener
interface.Methods in org.eclipse.swt.accessibility that return AccessibleListener Modifier and Type Method Description static AccessibleListener
AccessibleListener. getDescriptionAdapter(java.util.function.Consumer<AccessibleEvent> c)
Static helper method to create aAccessibleListener
for thegetDescription(AccessibleEvent e)
) method with a lambda expression.static AccessibleListener
AccessibleListener. getHelpAdapter(java.util.function.Consumer<AccessibleEvent> c)
Static helper method to create aAccessibleListener
for thegetHelp(AccessibleEvent e)
) method with a lambda expression.static AccessibleListener
AccessibleListener. getKeyboardShortcutAdapter(java.util.function.Consumer<AccessibleEvent> c)
Static helper method to create aAccessibleListener
for thegetKeyboardShortcut(AccessibleEvent e)
) method with a lambda expression.static AccessibleListener
AccessibleListener. getNameAdapter(java.util.function.Consumer<AccessibleEvent> c)
Static helper method to create aAccessibleListener
for thegetName(AccessibleEvent e)
) method with a lambda expression.Methods in org.eclipse.swt.accessibility with parameters of type AccessibleListener Modifier and Type Method Description void
Accessible. addAccessibleListener(AccessibleListener listener)
Adds the listener to the collection of listeners who will be notified when an accessible client asks for certain strings, such as name, description, help, or keyboard shortcut.void
Accessible. removeAccessibleListener(AccessibleListener listener)
Removes the listener from the collection of listeners who will be notified when an accessible client asks for certain strings, such as name, description, help, or keyboard shortcut.
-