// set the background color for the container to white
buttonContainer.setBackground(getDisplay().getSystemColor(
SWT.COLOR_LIST_BACKGROUND));
// create the new button
ActionButton newButton = new ActionButton(buttonContainer,
SWT.PUSH,
newAction);
newButton.setLayoutData(
new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING));
// create the remove button
ActionButton deleteButton = new ActionButton(buttonContainer,
SWT.PUSH,
deleteAction);
deleteButton.setLayoutData(
new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING));
}