this.configureXRegistryItem.addActionListener(new AbstractAction() {
private XRegistryConfigurationWindow window;
public void actionPerformed(ActionEvent e) {
if (this.window == null) {
this.window = new XRegistryConfigurationWindow(
PegasusMenu.this.engine);
}
this.window.show();
}
});