Package net.ssehub.easy.producer.eclipse
Class DebugStatus
java.lang.Object
org.eclipse.core.runtime.Status
net.ssehub.easy.producer.eclipse.DebugStatus
- All Implemented Interfaces:
org.eclipse.core.runtime.IStatus
public class DebugStatus
extends org.eclipse.core.runtime.Status
Subclass of Status for own DEBUG Status in eclipse logging.
- Author:
- Sass
-
Field Summary
FieldsFields inherited from class org.eclipse.core.runtime.Status
CANCEL_STATUS, OK_STATUSFields inherited from interface org.eclipse.core.runtime.IStatus
CANCEL, ERROR, INFO, OK, WARNING -
Constructor Summary
ConstructorsConstructorDescriptionDebugStatus(String pluginId, String message) Simplified constructor of a new status object; assumes that code is OK and exception is null. -
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 Details
-
SEVERITY
public static final int SEVERITY- See Also:
-
-
Constructor Details
-
DebugStatus
Simplified constructor of a new status object; assumes that code is OK and exception is null. The created status has no children.- Parameters:
pluginId- the unique identifier of the relevant plug-inmessage- a human-readable message, localized to the current locale
-