Composite container = toolkit.createComposite(section, SWT.NONE);
container.setLayout(FormLayoutFactory.createSectionClientTableWrapLayout(false, 2));
TableWrapData data = new TableWrapData(TableWrapData.FILL_GRAB);
container.setLayoutData(data);
_tabvDp = new PoserTableViewer(container, SWT.SINGLE | SWT.FULL_SELECTION);
TableWrapData data_tabv = new TableWrapData(TableWrapData.FILL_GRAB);
data_tabv.grabVertical = true;
data_tabv.heightHint = 100 + 100 + 200;
_tabvDp.getTable().setLayoutData(data_tabv);