Package org.eclipse.jface.dialogs
Class ErrorSupportProvider
- java.lang.Object
-
- org.eclipse.jface.dialogs.ErrorSupportProvider
-
- Direct Known Subclasses:
AbstractStatusAreaProvider
public abstract class ErrorSupportProvider extends Object
A ErrorSupportProvider defines the area to be shown in an error dialog for extra support information.- Since:
- 3.3
-
-
Constructor Summary
Constructors Constructor Description ErrorSupportProvider()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Control
createSupportArea(Composite parent, IStatus status)
Create an area for adding support components as a child of parent.boolean
validFor(IStatus status)
This method is called beforecreateSupportArea(Composite, IStatus)
to check if theErrorSupportProvider
will display any significant informations.
-
-
-
Method Detail
-
createSupportArea
public abstract Control createSupportArea(Composite parent, IStatus status)
Create an area for adding support components as a child of parent.
-
validFor
public boolean validFor(IStatus status)
This method is called beforecreateSupportArea(Composite, IStatus)
to check if theErrorSupportProvider
will display any significant informations. If not, then it will not be presented at all.
-
-