Package org.eclipse.jface.util
Class StatusHandler
- java.lang.Object
-
- org.eclipse.jface.util.StatusHandler
-
public abstract class StatusHandler extends java.lang.ObjectA mechanism to handle statuses throughout JFace.Clients may provide their own implementation to change how statuses are handled from within JFace.
- Since:
- 3.4
- See Also:
Policy.getStatusHandler(),Policy.setStatusHandler(StatusHandler)
-
-
Constructor Summary
Constructors Constructor Description StatusHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidshow(IStatus status, java.lang.String title)Show the given status.
-
-
-
Method Detail
-
show
public abstract void show(IStatus status, java.lang.String title)
Show the given status.- Parameters:
status- status to handletitle- title for the status
-
-