Uses of Class
org.eclipse.jface.bindings.TriggerSequence
-
Packages that use TriggerSequence Package Description org.eclipse.jface.action Provides support for shared UI resources such as menus, tool bars, and status lines.org.eclipse.jface.bindings Provides support for bindings between commands and various user input events (e.g., keyboard shortcuts).org.eclipse.jface.bindings.keys Provides support for bindings between commands and keys.org.eclipse.ui.keys Provides support for integrating keys into the Eclipse workbench. -
-
Uses of TriggerSequence in org.eclipse.jface.action
Methods in org.eclipse.jface.action that return TriggerSequence Modifier and Type Method Description TriggerSequence[]ExternalActionManager.CommandCallback. getActiveBindingsFor(String commandId)Returns the active bindings for a particular command identifier.TriggerSequence[]ExternalActionManager.IBindingManagerCallback. getActiveBindingsFor(String commandId)Returns the active bindings for a particular command identifier. -
Uses of TriggerSequence in org.eclipse.jface.bindings
Methods in org.eclipse.jface.bindings that return TriggerSequence Modifier and Type Method Description TriggerSequence[]BindingManager. getActiveBindingsDisregardingContextFor(ParameterizedCommand parameterizedCommand)Returns the active bindings for a particular command identifier, but discounting the current contexts.TriggerSequence[]BindingManager. getActiveBindingsFor(String commandId)Returns the active bindings for a particular command identifier.TriggerSequence[]BindingManager. getActiveBindingsFor(ParameterizedCommand parameterizedCommand)Returns the active bindings for a particular command identifier.TriggerSequenceBindingManager. getBestActiveBindingFor(String commandId)Gets the best active binding for a command.TriggerSequenceBindingManager. getBestActiveBindingFor(ParameterizedCommand command)abstract TriggerSequence[]TriggerSequence. getPrefixes()Returns a list of prefixes for the current sequence.abstract TriggerSequenceBinding. getTriggerSequence()Returns the sequence of trigger for a given binding.Methods in org.eclipse.jface.bindings with parameters of type TriggerSequence Modifier and Type Method Description booleanTriggerSequence. endsWith(TriggerSequence triggerSequence, boolean equals)Returns whether or not this key sequence ends with the given key sequence.CollectionBindingManager. getConflictsFor(TriggerSequence sequence)Provides the current conflicts in the keybindings for the given TriggerSequence as aCollectionofBindingMapBindingManager. getPartialMatches(TriggerSequence trigger)Returns all of the possible bindings that start with the given trigger (but are not equal to the given trigger).BindingBindingManager. getPerfectMatch(TriggerSequence trigger)Returns the command identifier for the active binding matching this trigger, if any.booleanBindingManager. isPartialMatch(TriggerSequence trigger)Returns whether the given trigger sequence is a partial match for the given sequence.booleanBindingManager. isPerfectMatch(TriggerSequence trigger)Returns whether the given trigger sequence is a perfect match for the given sequence.voidBindingManager. removeBindings(TriggerSequence sequence, String schemeId, String contextId, String locale, String platform, String windowManager, int type)Removes any binding that matches the given values -- regardless of command identifier.booleanTriggerSequence. startsWith(TriggerSequence triggerSequence, boolean equals)Returns whether or not this trigger sequence starts with the given trigger sequence. -
Uses of TriggerSequence in org.eclipse.jface.bindings.keys
Subclasses of TriggerSequence in org.eclipse.jface.bindings.keys Modifier and Type Class Description classKeySequenceAKeySequenceis defined as a list of zero or moreKeyStrokes, with the stipulation that allKeyStrokeobjects must be complete, save for the last one, whose completeness is optional.Methods in org.eclipse.jface.bindings.keys that return TriggerSequence Modifier and Type Method Description TriggerSequence[]KeySequence. getPrefixes()TriggerSequenceKeyBinding. getTriggerSequence() -
Uses of TriggerSequence in org.eclipse.ui.keys
Methods in org.eclipse.ui.keys that return TriggerSequence Modifier and Type Method Description TriggerSequence[]IBindingService. getActiveBindingsFor(String commandId)Gets the active bindings for a given command identifier.TriggerSequence[]IBindingService. getActiveBindingsFor(ParameterizedCommand parameterizedCommand)Gets the active bindings for a given parameterized command.TriggerSequenceIBindingService. getBestActiveBindingFor(String commandId)Gets the best active binding for a command.TriggerSequenceIBindingService. getBestActiveBindingFor(ParameterizedCommand command)Gets the best active binding for a command.TriggerSequenceIBindingService. getBuffer()Returns the current state of the key binding buffer.Methods in org.eclipse.ui.keys with parameters of type TriggerSequence Modifier and Type Method Description CollectionIBindingService. getConflictsFor(TriggerSequence sequence)Provides the current conflicts in the keybindings for the given TriggerSequence as aCollectionofBindingMapIBindingService. getPartialMatches(TriggerSequence trigger)Returns all of the possible bindings that start with the given trigger (but are not equal to the given trigger).BindingIBindingService. getPerfectMatch(TriggerSequence trigger)Returns the command identifier for the active binding matching this trigger, if any.booleanIBindingService. isPartialMatch(TriggerSequence trigger)Returns whether the given trigger sequence is a partial match for the given sequence.booleanIBindingService. isPerfectMatch(TriggerSequence trigger)Returns whether the given trigger sequence is a perfect match for the given sequence.
-