this.removeButton = (ItsNatHTMLInputButton)compMgr.createItsNatComponentById("removeId");
removeButton.addEventListener("click",this);
DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode)selModel.getSelectionPath().getLastPathComponent();
TreeTableItem selectedItem = (TreeTableItem)selectedNode.getUserObject();
this.itemPrincipalComp = (ItsNatHTMLInputText)compMgr.createItsNatComponentById("itemPrincipalId");
itemPrincipalComp.setText(selectedItem.getPrincipal());
this.itemSecondaryComp = (ItsNatHTMLInputText)compMgr.createItsNatComponentById("itemSecondaryId");
itemSecondaryComp.setText(selectedItem.getSecondary());
this.posComp = (ItsNatHTMLInputText)compMgr.createItsNatComponentById("posId");