uiBindingRegistry.registerKeyBinding(new KeyEventMatcher(SWT.NONE,
SWT.ARROW_RIGHT), action);
uiBindingRegistry.registerKeyBinding(new KeyEventMatcher(SWT.SHIFT,
SWT.ARROW_RIGHT), action);
uiBindingRegistry.registerKeyBinding(new KeyEventMatcher(SWT.MOD1,
SWT.ARROW_RIGHT), new MoveToLastColumnAction());
uiBindingRegistry.registerKeyBinding(new KeyEventMatcher(SWT.SHIFT
| SWT.MOD1, SWT.ARROW_RIGHT), new MoveToLastColumnAction());
uiBindingRegistry.registerKeyBinding(new KeyEventMatcher(SWT.NONE,
SWT.TAB), action);
uiBindingRegistry.registerKeyBinding(new KeyEventMatcher(SWT.MOD1,
SWT.TAB), action);