public void widgetSelected( SelectionEvent e ) {
String newStyleName = Messages.PolygonPropertiesEditor_18;
InputDialog iDialog = new InputDialog(saveAllButton.getShell(), Messages.PolygonPropertiesEditor_19,
Messages.PolygonPropertiesEditor_20, newStyleName, null);
iDialog.setBlockOnOpen(true);
int open = iDialog.open();
if (open == SWT.CANCEL) {
return;
}
String name = iDialog.getValue();
if (name == null || name.length() == 0) {