Class BPMN2Profile.SequenceFlowStereotype
- java.lang.Object
-
- com.nomagic.profiles.ProfileImplementation.StereotypeWrapper
-
- com.nomagic.magicdraw.cbm.profiles.BPMN2Profile.SequenceFlowStereotype
-
- Enclosing class:
- BPMN2Profile
public static class BPMN2Profile.SequenceFlowStereotype extends ProfileImplementation.StereotypeWrapper
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ID
This attribute is used to uniquely identify BPMN elements.static java.lang.String
ISIMMEDIATE
An optional boolean value specifying whether Activities or Choreography Activities not in the model containing the Sequence Flow can occur between the elements connected by the Sequence Flow.static java.lang.String
STEREOTYPE_NAME
-
Constructor Summary
Constructors Modifier Constructor Description protected
SequenceFlowStereotype(BPMN2Profile profile)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
clear()
void
clearId(Element element)
void
clearIsImmediate(Element element)
java.lang.String
getId(Element element)
Property
getIdProperty()
Property
getIsImmediateProperty()
Stereotype
getStereotype()
Returns stereotype for this wrapper.boolean
is(Element element)
static boolean
isInstance(Element element)
java.lang.Boolean
isIsImmediate(Element element)
void
setId(Element element, java.lang.String value)
void
setIsImmediate(Element element, java.lang.Boolean value)
-
Methods inherited from class com.nomagic.profiles.ProfileImplementation.StereotypeWrapper
apply, isDerivedStereotype, isSameOrDerivedStereotype, unApply
-
-
-
-
Field Detail
-
STEREOTYPE_NAME
public static final java.lang.String STEREOTYPE_NAME
- See Also:
- Constant Field Values
-
ISIMMEDIATE
public static final java.lang.String ISIMMEDIATE
An optional boolean value specifying whether Activities or Choreography Activities not in the model containing the Sequence Flow can occur between the elements connected by the Sequence Flow. If the value is true, they MAY NOT occur. If the value is false, they MAY occur. Also see the isClosed attribute on Process, Choreography, and Collaboration. When the attribute has no value, the default semantics depends on the kind of model containing Sequence Flows: - For non-executable Processes (public Processes and non-executable private Processes) and Choreographies no value has the same semantics as if the value were false. - For an executable Processes no value has the same semantics as if the value were true. - For executable Processes, the attribute MUST NOT be false.- See Also:
- Constant Field Values
-
ID
public static final java.lang.String ID
This attribute is used to uniquely identify BPMN elements.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SequenceFlowStereotype
protected SequenceFlowStereotype(BPMN2Profile profile)
-
-
Method Detail
-
getStereotype
public Stereotype getStereotype()
Description copied from class:ProfileImplementation.StereotypeWrapper
Returns stereotype for this wrapper.- Specified by:
getStereotype
in classProfileImplementation.StereotypeWrapper
- Returns:
- stereotype
-
getIsImmediateProperty
@CheckForNull public Property getIsImmediateProperty()
-
getIdProperty
@CheckForNull public Property getIdProperty()
-
setIsImmediate
public void setIsImmediate(Element element, @CheckForNull java.lang.Boolean value)
-
clearIsImmediate
public void clearIsImmediate(Element element)
-
isIsImmediate
@CheckForNull public java.lang.Boolean isIsImmediate(Element element)
-
setId
public void setId(Element element, @CheckForNull java.lang.String value)
-
clearId
public void clearId(Element element)
-
getId
@CheckForNull public java.lang.String getId(Element element)
-
clear
protected void clear()
-
is
public boolean is(@CheckForNull Element element)
-
isInstance
public static boolean isInstance(@CheckForNull Element element)
-
-