package edu.ualberta.med.biobank.dialogs.user; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.wizard.IWizard; import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Shell; public class SecurityWizardDialog extends WizardDialog { public SecurityWizardDialog(Shell parentShell, IWizard newWizard) { super(parentShell, newWizard); } @Override protected void createButtonsForButtonBar(Composite parent) { super.createButtonsForButtonBar(parent); Button okButton = getButton(IDialogConstants.FINISH_ID); okButton.setText("Save"); } }