public AddInputDataPanel(Composite parent, int style) {
super(parent, style);
setLayout(createLayoutForThis());
createHeader();
this.delegate = new StaticExecutableInputDataDelegate(parent);
this.listBuilder = new ListBuilder(parent, SWT.NONE, delegate);
GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, true);
this.listBuilder.getPanel().setLayoutData(gridData);
}