* This method initializes table
*/
private void createTable() {
GridData gridData2 = new org.eclipse.swt.layout.GridData(GridData.FILL, GridData.FILL, true, true, 1, 3);
gridData2.widthHint = 204;
table = new Table(ordersGroup, SWT.BORDER | SWT.FULL_SELECTION);
table.addMouseListener(new MouseAdapter() {
public void mouseDoubleClick(final MouseEvent e) {
if(table.getSelectionCount() > 0)
ContextMenu.goTo(table.getSelection()[0].getText(0), _dom, Editor.ORDER);
}