group = new Group(this, SWT.NONE);
group.setText("Web Services");
GridData gridData1 = new org.eclipse.swt.layout.GridData(GridData.FILL, GridData.FILL, true, true, 1, 3);
tServices = new Table(group, SWT.BORDER | SWT.FULL_SELECTION);
tServices.addMouseListener(new MouseAdapter() {
public void mouseDoubleClick(final MouseEvent e) {
if(tServices.getSelectionCount() > 0)
ContextMenu.goTo(tServices.getSelection()[0].getText(0), _dom, Editor.WEBSERVICE);
}
});