MenuItem about_item = new MenuItem (submenu, SWT.PUSH);
about_item.setText(Localizer._("mainwindow.mainmenu.help.about"));
about_item.setImage(SWTImageRepository.getMenuImage("information.png"));
about_item.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent arg0) {
AboutWindow window = new AboutWindow();
window.getCoreComponents();
window.initUIComponents();
}
});
}