final TableColumn colComponentType = new TableColumn(tblDeployPlan, SWT.NONE);
colComponentType.setWidth(75);
colComponentType.setText("Type");
colComponentType.setData(new ColumnData(DeploymentComponentSorter.SORT_TYPE));
colComponentType.addListener(SWT.Selection, sortListener);
btnSelectAll = new Button(this, SWT.NONE);
btnSelectAll.setText("Select All");
btnSelectAll.setLayoutData(new GridData(SWT.BEGINNING, SWT.CENTER, false, false, 1, 1));
btnSelectAll.addSelectionListener(new SelectionAdapter() {