insertNodeLink = new JMenuItem(TextUtils.getText("SetNodeLink.text"));
insertNodeLink.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
final AttributeTable table = AttributePopupMenu.this.table;
final Object oldValue = table.getValueAt(row, col);
final NodeSelector nodeSelector = new NodeSelector();
nodeSelector.show(table, new INodeSelector() {
public void nodeSelected(NodeModel node) {
if(node == null)
return;
final String inputValue = "#" + node.getID();
try {