Uses of Interface
org.eclipse.swt.events.KeyListener
-
Packages that use KeyListener Package Description org.eclipse.jface.contentassist Provides a content assist add-on for implementors ofIContentAssistSubjectControl.org.eclipse.jface.text Provides a framework for creating and manipulating text documents.org.eclipse.jface.text.contentassist Provides a content assist add-on for anITextViewer.org.eclipse.jface.text.hyperlink Provides support for detecting and displaying hyperlinks inISourceViewers.org.eclipse.jface.text.source Provides a framework for connecting document regions with annotations and for displaying those.org.eclipse.swt.events SWT typed listener support.org.eclipse.swt.widgets SWT widget public API classes. -
-
Uses of KeyListener in org.eclipse.jface.contentassist
Methods in org.eclipse.jface.contentassist with parameters of type KeyListener Modifier and Type Method Description voidAbstractControlContentAssistSubjectAdapter. addKeyListener(KeyListener keyListener)Deprecated.voidIContentAssistSubjectControl. addKeyListener(KeyListener keyListener)Adds the listener to the collection of listeners who will be notified when keys are pressed and released on the system keyboard, by sending it one of the messages defined in theKeyListenerinterface.voidAbstractControlContentAssistSubjectAdapter. removeKeyListener(KeyListener keyListener)Deprecated.voidIContentAssistSubjectControl. removeKeyListener(KeyListener keyListener)Removes the listener from the collection of listeners who will be notified when keys are pressed and released on the system keyboard. -
Uses of KeyListener in org.eclipse.jface.text
Classes in org.eclipse.jface.text that implement KeyListener Modifier and Type Class Description classPaintManagerManages theIPainterobject registered with anITextViewer. -
Uses of KeyListener in org.eclipse.jface.text.contentassist
Classes in org.eclipse.jface.text.contentassist that implement KeyListener Modifier and Type Class Description protected classContentAssistant.AutoAssistListenerAn implementation ofIContentAssistListener, this class is used to monitor key events in support of automatic activation of the content assistant. -
Uses of KeyListener in org.eclipse.jface.text.hyperlink
Classes in org.eclipse.jface.text.hyperlink that implement KeyListener Modifier and Type Class Description classHyperlinkManagerDefault implementation of a hyperlink manager. -
Uses of KeyListener in org.eclipse.jface.text.source
Classes in org.eclipse.jface.text.source that implement KeyListener Modifier and Type Class Description protected classAnnotationBarHoverManager.CloserDeprecated.As of 3.4, no longer used as closer from super class is used -
Uses of KeyListener in org.eclipse.swt.events
Classes in org.eclipse.swt.events that implement KeyListener Modifier and Type Class Description classKeyAdapterThis adapter class provides default implementations for the methods described by theKeyListenerinterface.Methods in org.eclipse.swt.events that return KeyListener Modifier and Type Method Description static KeyListenerKeyListener. keyPressedAdapter(Consumer<KeyEvent> c)Static helper method to create aKeyListenerfor thekeyPressed(KeyEvent e)) method with a lambda expression.static KeyListenerKeyListener. keyReleasedAdapter(Consumer<KeyEvent> c)Static helper method to create aKeyListenerfor thekeyReleased(KeyEvent e)) method with a lambda expression. -
Uses of KeyListener in org.eclipse.swt.widgets
Methods in org.eclipse.swt.widgets with parameters of type KeyListener Modifier and Type Method Description voidControl. addKeyListener(KeyListener listener)Adds the listener to the collection of listeners who will be notified when keys are pressed and released on the system keyboard, by sending it one of the messages defined in theKeyListenerinterface.voidTracker. addKeyListener(KeyListener listener)Adds the listener to the collection of listeners who will be notified when keys are pressed and released on the system keyboard, by sending it one of the messages defined in theKeyListenerinterface.voidControl. removeKeyListener(KeyListener listener)Removes the listener from the collection of listeners who will be notified when keys are pressed and released on the system keyboard.voidTracker. removeKeyListener(KeyListener listener)Removes the listener from the collection of listeners who will be notified when keys are pressed and released on the system keyboard.
-