Class OperationStatus
- java.lang.Object
-
- org.eclipse.core.runtime.Status
-
- org.eclipse.core.commands.operations.OperationStatus
-
-
Field Summary
Fields Modifier and Type Field Description static int
NOTHING_TO_REDO
NOTHING_TO_REDO indicates there was no operation available for redo.static int
NOTHING_TO_UNDO
NOTHING_TO_UNDO indicates there was no operation available for undo.static int
OPERATION_INVALID
OPERATION_INVALID indicates that the operation available for undo or redo is not in a state to successfully perform the undo or redo.-
Fields inherited from class org.eclipse.core.runtime.Status
CANCEL_STATUS, OK_STATUS
-
-
Constructor Summary
Constructors Constructor Description OperationStatus(int severity, String pluginId, int code, String message, Throwable exception)
Creates a new operation status, specifying all properties.
-
Method Summary
-
Methods inherited from class org.eclipse.core.runtime.Status
error, error, getChildren, getCode, getException, getMessage, getPlugin, getSeverity, info, isMultiStatus, isOK, matches, setCode, setException, setMessage, setPlugin, setSeverity, toString, warning, warning
-
-
-
-
Field Detail
-
NOTHING_TO_REDO
public static final int NOTHING_TO_REDO
NOTHING_TO_REDO indicates there was no operation available for redo. (value is 1).- See Also:
- Constant Field Values
-
NOTHING_TO_UNDO
public static final int NOTHING_TO_UNDO
NOTHING_TO_UNDO indicates there was no operation available for undo. (value is 2).- See Also:
- Constant Field Values
-
OPERATION_INVALID
public static final int OPERATION_INVALID
OPERATION_INVALID indicates that the operation available for undo or redo is not in a state to successfully perform the undo or redo. (value is 3).- See Also:
- Constant Field Values
-
-
Constructor Detail
-
OperationStatus
public OperationStatus(int severity, String pluginId, int code, String message, Throwable exception)
Creates a new operation status, specifying all properties.- Parameters:
severity
- the severity for the statuspluginId
- the unique identifier of the relevant plug-incode
- the informational code for the statusmessage
- a human-readable message, localized to the current localeexception
- a low-level exception, ornull
if not applicable
-
-