}
private void saveBounds(Rectangle bounds) {
IDialogSettings dialogBounds = fSettings.getSection(DIALOG_BOUNDS_KEY);
if(dialogBounds == null) {
dialogBounds = new DialogSettings(DIALOG_BOUNDS_KEY);
fSettings.addSection(dialogBounds);
}
dialogBounds.put(X, bounds.x);
dialogBounds.put(Y, bounds.y);
dialogBounds.put(WIDTH, bounds.width);