List of usage examples for org.eclipse.jface.dialogs ErrorDialog subclass-usage
From source file au.gov.ga.earthsci.application.util.StackTraceDialog.java
/**
* {@link ErrorDialog} subclass that shows the error's stacktrace in the details
* view.
*
* @author Michael de Hoog (michael.dehoog@ga.gov.au)
*/
From source file au.gov.ga.earthsci.common.ui.dialogs.StackTraceDialog.java
/**
* {@link ErrorDialog} subclass that shows the error's stacktrace in the details
* view.
*
* @author Michael de Hoog (michael.dehoog@ga.gov.au)
*/
From source file com.microsoft.tfs.client.common.ui.framework.dialog.TeamExplorerErrorDialog.java
/**
* An extension of the standard Eclipse ErrorDialog that exists purely to hide
* the inner exception of an {@link IStatus}.
*
* Typically, we create {@link IStatus} objects that represent the results of an
* exception (see command exception handlers.) The message is constructed from
From source file com.microsoft.tfs.client.eclipse.ui.dialogs.vc.FileModificationFailureDialog.java
public class FileModificationFailureDialog extends ErrorDialog { public FileModificationFailureDialog(final Shell parentShell, final TFSFileModificationStatusData[] statusData, final IStatus status) { super(parentShell, Messages.getString("FileModificationFailureDialog.DialogTitle"), //$NON-NLS-1$ getMessage(statusData), status, IStatus.ERROR | IStatus.WARNING | IStatus.INFO); }
From source file com.siteview.mde.internal.runtime.registry.DiagnosticsDialog.java
public class DiagnosticsDialog extends ErrorDialog { public DiagnosticsDialog(Shell parentShell, String dialogTitle, String message, IStatus status, int displayMask) { super(parentShell, dialogTitle, message, status, displayMask); }
From source file com.telink.tc32eclipse.ui.dialogs.TCDBErrorDialog.java
/**
* Display an TCDB Error.
* <p>
* This Dialog knows how interpret an {@link TCDBException} and will display a human readable
* message for the reason of the Exception.
* </p>
From source file de.fhg.igd.slf4jplus.ui.userstatus.StackTraceErrorDialog.java
/**
* Extended ErrorDialog which displays the stack trace. Can be configured to
* also show a link to the error log view.
* @author Michel Kraemer
* @author Simon Templer
*/
From source file de.innot.avreclipse.ui.dialogs.AVRDudeErrorDialog.java
/**
* Display an AVRDude Error.
* <p>
* This Dialog knows how interpret an {@link AVRDudeException} and will display a human readable
* message for the reason of the Exception.
* </p>
From source file de.uniluebeck.itm.spyglass.gui.CheckboxErrorDialog.java
/**
* Displays a customized {@link ErrorDialog}.<br>
* Additionally to the ordinary functionality, a check box button is available to select if the same
* message has to be displayed the next time it occurs.
*
* @author Sebastian Ebers
From source file eu.esdihumboldt.hale.ui.util.dialog.StackTraceErrorDialog.java
/**
* Extended ErrorDialog which displays the stack trace. Can be configured to
* also show a link to the error log view.
*
* @author Michel Kraemer
* @author Simon Templer