item.addActionListener(new AbstractAction() {
private static final long serialVersionUID = 1L;
private URLRegistryWindow window;
public void actionPerformed(ActionEvent e) {
if (this.window == null) {
this.window = new URLRegistryWindow(engine);
}
this.window.show();
}
});
return item;