// Zur n�chsten Person ohne die Direktmarkierung springen.
MenuItem jumpToWithoutLabelPerson = new MenuItem(submenu, SWT.PUSH);
jumpToWithoutLabelPerson.setText("Zur n�chsten Person ohne die Direktmarkierung springen\tAlt + Shift + F8");
jumpToWithoutLabelPerson.setAccelerator(SWT.F8 | SWT.SHIFT | SWT.ALT);
jumpToWithoutLabelPerson.addListener(SWT.Selection, new JumpToWithoutLabelPerson());
}