tableContainer.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
tableContainer.setLayout(LayoutUtils.createGridLayout(1, 0, 0));
/* Custom Table */
int style = SWT.MULTI | SWT.FULL_SELECTION | SWT.BORDER | SWT.VIRTUAL;
CTable customTable = new CTable(tableContainer, style);
/* Viewer */
fViewer = new TableViewer(customTable.getControl()) {
@Override
public ISelection getSelection() {
StructuredSelection selection = (StructuredSelection) super.getSelection();
return convertToNews(selection);
}