item.addActionListener(new AbstractAction() {
private GPELRegistryWindow window;
public void actionPerformed(ActionEvent e) {
if (this.window == null) {
this.window = new GPELRegistryWindow(GPELMenu.this.engine);
}
this.window.show();
}
});
return item;