Uses of Class
org.eclipse.gef.KeyStroke
-
Packages that use KeyStroke Package Description org.eclipse.gef All interfaces, base types, and the plugin class are here. -
-
Uses of KeyStroke in org.eclipse.gef
Methods in org.eclipse.gef that return KeyStroke Modifier and Type Method Description static KeyStroke
KeyStroke. getPressed(char character, int stateMask)
Constructs a KeyStroke that will match the givenKeyEvent.character
andKeyEvent.stateMask
during a press event.static KeyStroke
KeyStroke. getPressed(char character, int keyCode, int stateMask)
Constructs a KeyStroke that will match the givenKeyEvent.character
,KeyEvent.keyCode
, andKeyEvent.stateMask
during a press event.static KeyStroke
KeyStroke. getPressed(int keyCode, int stateMask)
Constructs a KeyStroke that will match the givenKeyEvent.keyCode
andKeyEvent.stateMask
during a press event.static KeyStroke
KeyStroke. getReleased(char character, int stateMask)
Constructs a KeyStroke that will match the givenKeyEvent.character
andKeyEvent.stateMask
during a release event.static KeyStroke
KeyStroke. getReleased(char character, int keyCode, int stateMask)
Constructs a KeyStroke that will match the givenKeyEvent.character
,KeyEvent.keyCode
, andKeyEvent.stateMask
during a release event.static KeyStroke
KeyStroke. getReleased(int keyCode, int stateMask)
Constructs a KeyStroke that will match the givenKeyEvent.keyCode
andKeyEvent.stateMask
during a release event.Methods in org.eclipse.gef with parameters of type KeyStroke Modifier and Type Method Description void
KeyHandler. put(KeyStroke keystroke, IAction action)
Maps a specifiedKeyStroke
to anIAction
.void
KeyHandler. remove(KeyStroke keystroke)
Removed a mappedIAction
for the specifiedKeyStroke
.
-