aboutItem.addActionListener(new AbstractAction() {
private AboutWindow window;
public void actionPerformed(ActionEvent event) {
if (this.window == null) {
this.window = new AboutWindow(XBayaMenu.this.getEngine());
}
this.window.show();
}
});
helpMenu.add(aboutItem);