Uses of Class
net.ssehub.easy.basics.messages.Status
-
Packages that use Status Package Description net.ssehub.easy.basics.messages A common definition of messages with description and status derived from a specific set of (identifiable) exceptions .net.ssehub.easy.dslCore.translation Basic reusable classes for SSE-style DSL implementation.net.ssehub.easy.reasoning.core.reasoner All classes and interfaces needed to implement a reasoner.
How to write a reasoner: Create an Eclipse Plugin project with Activator (even if "empty"). Addorg.eclipse.equinox.dsto the required plugins andorg.osgi.service.componentto the imported packages as your reasoner will be linked using OSGi descriptive services (DS) to the reasoner core.net.ssehub.easy.varModel.cstEvaluation Implements the evaluation of constraint syntax trees.net.ssehub.easy.varModel.validation Classes for validating e variability model, e.g. -
-
Uses of Status in net.ssehub.easy.basics.messages
Fields in net.ssehub.easy.basics.messages declared as Status Modifier and Type Field Description private StatusMessage. statusMethods in net.ssehub.easy.basics.messages that return Status Modifier and Type Method Description StatusIMessage. getStatus()Returns the status of this message.StatusMessage. getStatus()static StatusStatus. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Status[]Status. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.ssehub.easy.basics.messages with parameters of type Status Modifier and Type Method Description static java.lang.StringMessage. toString(java.util.List<Message> messages, Status filter)Utility method returning a string representation of a given set ofmessages.Constructors in net.ssehub.easy.basics.messages with parameters of type Status Constructor Description Message(java.lang.String description, Status status)Creates a message. -
Uses of Status in net.ssehub.easy.dslCore.translation
Constructors in net.ssehub.easy.dslCore.translation with parameters of type Status Constructor Description Message(java.lang.String message, Status status, org.eclipse.emf.ecore.EObject cause, org.eclipse.emf.ecore.EStructuralFeature causingFeature, int code)Creates a message object. -
Uses of Status in net.ssehub.easy.reasoning.core.reasoner
Constructors in net.ssehub.easy.reasoning.core.reasoner with parameters of type Status Constructor Description Message(java.lang.String explanation, java.util.List<ModelElement> conflictingElements, Status status)Sole constructor for multiple conflicting elements. -
Uses of Status in net.ssehub.easy.varModel.cstEvaluation
Constructors in net.ssehub.easy.varModel.cstEvaluation with parameters of type Status Constructor Description Message(java.lang.String description, Status status, IDecisionVariable var, int code)Main constructor. -
Uses of Status in net.ssehub.easy.varModel.validation
Constructors in net.ssehub.easy.varModel.validation with parameters of type Status Constructor Description ValidationMessage(java.lang.String description, Status status, int code)Creates a validation message (without a model element as cause).ValidationMessage(java.lang.String description, Status status, java.lang.Object cause, int code)Creates a validation message.
-