public static int optionallyPromptWithCancel(IPreferenceStore prefStore,
String prefName, String title, String text, Shell parentShell)
{
int result = IDialogConstants.NO_ID;
PromptablePreference value = preference(prefStore, prefName);
switch (value)
{
case Always:
result = IDialogConstants.YES_ID;
break;