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