Link link = new Link(parent, SWT.NONE);
link.setText("\n This view is not intended to be opened as a standalone view. Please select one of the <a>IM Providers</a> to open a populated view."); //$NON-NLS-1$
link.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
SelectProviderAction action = new SelectProviderAction();
action.init(ChatRoomManagerView.this.getSite().getWorkbenchWindow());
action.run(null);
}
});
}