package xyz.veronie.bgg.ui.parts; import javax.annotation.PostConstruct; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridData; //import org.eclipse.swt.layout.GridData; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Label; import xyz.veronie.bgg.data.ResultConfigManager; public class BggResultPart { @PostConstruct public void createControls(Composite parent) { Composite main = new Composite(parent, SWT.FILL); Label lblTable = new Label(main, SWT.LEFT); lblTable.setText("I am a table"); lblTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); } }