List of usage examples for org.eclipse.jface.dialogs IDialogConstants RETRY_ID
int RETRY_ID
To view the source code for org.eclipse.jface.dialogs IDialogConstants RETRY_ID.
Click Source Link
From source file:org.rssowl.ui.internal.dialogs.StartupErrorDialog.java
License:Open Source License
@Override protected void createButtonsForButtonBar(Composite parent) { if (!Application.IS_MAC && !Application.IS_LINUX) { //Somehow a restart fails on Linux/Mac if invoked early on startup createButton(parent, IDialogConstants.RETRY_ID, Messages.StartupErrorDialog_RESTART_RSSOWL, true); createButton(parent, IDialogConstants.CLOSE_ID, Messages.StartupErrorDialog_QUIT_RSSOWL, false); getButton(IDialogConstants.RETRY_ID).setFocus(); } else {//from w w w . ja v a2 s . co m createButton(parent, IDialogConstants.CLOSE_ID, Messages.StartupErrorDialog_QUIT_RSSOWL, true); getButton(IDialogConstants.CLOSE_ID).setFocus(); } }