The method org.eclipse.core.runtime.IStatus.getSeverity() is a Java method that belongs to the class org.eclipse.core.runtime.IStatus. It is used to retrieve the severity level of a status object. The severity level indicates the level of importance or urgency associated with a specific status. The possible severity levels are defined as constants in the IStatus class, such as OK, ERROR, WARNING, and INFO. This method allows developers to programmatically determine the severity of a status and take appropriate actions based on it.
Java IStatus.getSeverity - 30 examples found. These are the top rated real world Java examples of org.eclipse.core.runtime.IStatus.getSeverity extracted from open source projects. You can rate examples to help us improve the quality of examples.