Class BPMN2Profile.DataAssociationStereotype
- java.lang.Object
-
- com.nomagic.profiles.ProfileImplementation.StereotypeWrapper
-
- com.nomagic.magicdraw.cbm.profiles.BPMN2Profile.DataAssociationStereotype
-
- Enclosing class:
- BPMN2Profile
public static class BPMN2Profile.DataAssociationStereotype extends ProfileImplementation.StereotypeWrapper
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ASSIGNMENT
Specifies one or more data elements Assignments.static java.lang.String
ID
This attribute is used to uniquely identify BPMN elements.static java.lang.String
STEREOTYPE_NAME
static java.lang.String
TRANSFORMATION
Specifies an optional transformation Expression.
-
Constructor Summary
Constructors Modifier Constructor Description protected
DataAssociationStereotype(BPMN2Profile profile)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAssignment(Element element, Element value)
protected void
clear()
void
clearAssignment(Element element)
void
clearId(Element element)
void
clearTransformation(Element element)
java.util.List<Element>
getAssignment(Element element)
Property
getAssignmentProperty()
java.lang.String
getId(Element element)
Property
getIdProperty()
Stereotype
getStereotype()
Returns stereotype for this wrapper.java.lang.String
getTransformation(Element element)
Property
getTransformationProperty()
boolean
is(Element element)
static boolean
isInstance(Element element)
void
removeAssignment(Element element, Element value)
void
setAssignment(Element element, java.util.Collection<? extends Element> value)
void
setId(Element element, java.lang.String value)
void
setTransformation(Element element, java.lang.String 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
-
ASSIGNMENT
public static final java.lang.String ASSIGNMENT
Specifies one or more data elements Assignments. By using an Assignment, single data structure elements can be assigned from the source structure to the target structure.- See Also:
- Constant Field Values
-
TRANSFORMATION
public static final java.lang.String TRANSFORMATION
Specifies an optional transformation Expression. The actual scope of accessible data for that Expression is defined by the source and target of the specific Data Association types.- 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
-
DataAssociationStereotype
protected DataAssociationStereotype(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
-
getAssignmentProperty
@CheckForNull public Property getAssignmentProperty()
-
getTransformationProperty
@CheckForNull public Property getTransformationProperty()
-
getIdProperty
@CheckForNull public Property getIdProperty()
-
setAssignment
public void setAssignment(Element element, @CheckForNull java.util.Collection<? extends Element> value)
-
clearAssignment
public void clearAssignment(Element element)
-
setTransformation
public void setTransformation(Element element, @CheckForNull java.lang.String value)
-
clearTransformation
public void clearTransformation(Element element)
-
getTransformation
@CheckForNull public java.lang.String getTransformation(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)
-
-