Class Index | File Index

Classes


Class eclipse.CommandKeyBinding

A CommandKeyBinding represents of a key code and a modifier state that can be triggered by the user using the keyboard.
Defined in: </shared/eclipse/e4/orion/I201106010943/plugins/org.eclipse.orion.client.core/static/js/commands.js>.

Class Summary
Constructor Attributes Constructor Name and Description
 
eclipse.CommandKeyBinding(keyCode, mod1, mod2, mod3, mod4)
Constructs a new key binding with the given key code and modifiers.
Field Summary
Field Attributes Field Name and Description
 
An eclipse.KeyBinding or key code.
 
The primary modifier (usually Command on Mac and Control on other platforms).
 
The secondary modifier (usually Shift).
 
The third modifier (usually Alt).
 
The fourth modifier (usually Control on the Mac).
Method Summary
Method Attributes Method Name and Description
 
equals(kb)
Returns whether this key binding is the same as the given parameter.
 
match(e)
Returns whether this key binding matches the given key event.
Class Detail
eclipse.CommandKeyBinding(keyCode, mod1, mod2, mod3, mod4)
Constructs a new key binding with the given key code and modifiers.
Parameters:
{String|Number} keyCode
the key code.
{Boolean} mod1
the primary modifier (usually Command on Mac and Control on other platforms).
{Boolean} mod2
the secondary modifier (usually Shift).
{Boolean} mod3
the third modifier (usually Alt).
{Boolean} mod4
the fourth modifier (usually Control on the Mac).
Field Detail
{Object|String|Number} keyCode
An eclipse.KeyBinding or key code.

{Boolean} mod1
The primary modifier (usually Command on Mac and Control on other platforms).

{Boolean} mod2
The secondary modifier (usually Shift).

{Boolean} mod3
The third modifier (usually Alt).

{Boolean} mod4
The fourth modifier (usually Control on the Mac).
Method Detail
{Boolean} equals(kb)
Returns whether this key binding is the same as the given parameter.
Parameters:
{eclipse.CommandKeyBinding} kb
the key binding to compare with.
Returns:
{Boolean} whether or not the parameter and the receiver describe the same key binding.

{Boolean} match(e)
Returns whether this key binding matches the given key event.
Parameters:
e
the key event.
Returns:
{Boolean} true whether the key binding matches the key event.

Documentation generated by JsDoc Toolkit 2.4.0 on Wed Jun 01 2011 09:58:18 GMT-0400 (EDT)