style |= SWT.MULTI;
}
this.viewer = new TableViewer(composite, style);
- GridData full = new GridData(GridData.FILL_HORIZONTAL);
- full.widthHint = 200;
- full.heightHint = 50;
+ GridData full = new GridData(GridData.FILL_BOTH);
+ full.widthHint = 300;
+ full.heightHint = 100;
this.viewer.getControl().setLayoutData(full);
this.viewer.setLabelProvider(new LabelProvider());