MenuItem openStudentItem = new MenuItem(fileMenu, SWT.NONE);
openStudentItem.setText("Abrir Aluno\tCtrl+Shift+A");
openStudentItem.setAccelerator(SWT.CTRL | SWT.SHIFT | 'a');
openStudentItem.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event e) {
new LoadStudentDialog(getShell()).open();
}
});
new MenuItem(fileMenu, SWT.SEPARATOR);