Class NotificationSeverity
- java.lang.Object
-
- com.nomagic.magicdraw.ui.notification.NotificationSeverity
-
- All Implemented Interfaces:
java.io.Serializable
@OpenApi public class NotificationSeverity extends java.lang.Object implements java.io.Serializable
Class representing notification severity. Severity consists of two parts: unique id and human readable string.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
NotificationSeverity.Type
Severity type
-
Field Summary
Fields Modifier and Type Field Description static NotificationSeverity
ERROR
static NotificationSeverity
INFO
static NotificationSeverity
WARNING
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getSeverityId()
Returns severity id.java.lang.String
getText()
Returns severity human readable text.
-
-
-
Field Detail
-
INFO
@OpenApi public static final NotificationSeverity INFO
-
WARNING
@OpenApi public static final NotificationSeverity WARNING
-
ERROR
@OpenApi public static final NotificationSeverity ERROR
-
-