Adding external link to a tree menu

Hi,
I am very new to vaadin.
I am in need of knowing how to implement a link to a tree menu.

for(IPlugin p: plugins){
tree.addItem(p.getName());
tree.setChildrenAllowed(p.getName(), false);
}

After this cycle I would link to add a simple link.

How?

Thanks a lot.