// This little code fragment is an attempt to get the right sizing for the buttons
// Was wrong on Mac platforms
// Word below is the longer of the two words in the button container
Button tempForSize = toolkit.createButton(tableContainer, "Remove", SWT.PUSH);
Point p = tempForSize.computeSize(SWT.DEFAULT, SWT.DEFAULT);
tempForSize.dispose();
Composite bottomButtonContainer = newButtonContainer(tableContainer, HORIZONTAL_BUTTONS, 3* p.x);
addButton = newPushButton(bottomButtonContainer, S_ADD,
"Click here to add a locally defined AE or CAS Consumer delegate", ENABLED);