public class HTMLEditorBehavior extends BehaviorBase<HTMLEditor>
Modifier and Type | Field and Description |
---|---|
protected static java.util.List<KeyBinding> |
HTML_EDITOR_BINDINGS |
IS_TOUCH_SUPPORTED, TRAVERSAL_BINDINGS
Constructor and Description |
---|
HTMLEditorBehavior(HTMLEditor htmlEditor) |
Modifier and Type | Method and Description |
---|---|
protected void |
callAction(java.lang.String name)
Called to invoke the action associated with the given name.
|
callActionForEvent, contextMenuRequested, dispose, focusChanged, getControl, matchActionForEvent, mouseDragged, mouseEntered, mouseExited, mousePressed, mouseReleased, traverse, traverseDown, traverseLeft, traverseNext, traversePrevious, traverseRight, traverseUp
protected static final java.util.List<KeyBinding> HTML_EDITOR_BINDINGS
public HTMLEditorBehavior(HTMLEditor htmlEditor)
protected void callAction(java.lang.String name)
BehaviorBase
When a KeyEvent is handled, it is first passed through callActionForEvent which resolves which "action" should be executed based on the key event. This action is indicated by name. This name is then passed to this function which is responsible for invoking the right function based on the name.
callAction
in class BehaviorBase<HTMLEditor>