final Label label = new Label(gMain, SWT.HORIZONTAL | SWT.SEPARATOR);
label.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, false, false, 3, 1));
label.setText("label");
new Label(gMain, SWT.NONE);
tCommands = new Table(gMain, SWT.FULL_SELECTION | SWT.BORDER);
tCommands.addMouseListener(new MouseAdapter() {
public void mouseDoubleClick(final MouseEvent e) {
String str = tCommands.getSelection()[0].getText(2).length() > 0 ? tCommands.getSelection()[0].getText(2) : tCommands.getSelection()[0].getText(1);
ContextMenu.goTo(tCommands.getSelection()[0].getText(0) + ": " + str, _dom, Editor.JOB_COMMAND_EXIT_CODES);
}