Package com.nomagic.magicdraw.simulation
Class SimulationProfile.SignalInstanceStereotype
- java.lang.Object
-
- com.nomagic.profiles.ProfileImplementation.StereotypeWrapper
-
- com.nomagic.magicdraw.simulation.SimulationProfile.SignalInstanceStereotype
-
- Enclosing class:
- SimulationProfile
public static class SimulationProfile.SignalInstanceStereotype extends ProfileImplementation.StereotypeWrapper
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ELEMENT
static java.lang.String
RESULT
static java.lang.String
STEREOTYPE_NAME
static java.lang.String
SYNCHRONOUS
static java.lang.String
TARGET
static java.lang.String
TIMESTAMP
static java.lang.String
VALUES
-
Constructor Summary
Constructors Modifier Constructor Description protected
SignalInstanceStereotype(SimulationProfile profile)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addValues(Element element, Element value)
void
clearElement(Element element)
void
clearResult(Element element)
void
clearSynchronous(Element element)
void
clearTarget(Element element)
void
clearTimestamp(Element element)
void
clearValues(Element element)
Element
getElement(Element element)
Property
getElementProperty()
Element
getResult(Element element)
Property
getResultProperty()
Stereotype
getStereotype()
Returns stereotype for this wrapper.Property
getSynchronousProperty()
java.lang.String
getTarget(Element element)
Property
getTargetProperty()
java.lang.String
getTimestamp(Element element)
Property
getTimestampProperty()
java.util.List<Element>
getValues(Element element)
Property
getValuesProperty()
boolean
is(Element element)
static boolean
isInstance(Element element)
java.lang.Boolean
isSynchronous(Element element)
void
removeValues(Element element, Element value)
void
setElement(Element element, Element value)
void
setResult(Element element, Element value)
void
setSynchronous(Element element, java.lang.Boolean value)
void
setTarget(Element element, java.lang.String value)
void
setTimestamp(Element element, java.lang.String value)
void
setValues(Element element, java.util.Collection<? extends Element> 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
-
RESULT
public static final java.lang.String RESULT
- See Also:
- Constant Field Values
-
SYNCHRONOUS
public static final java.lang.String SYNCHRONOUS
- See Also:
- Constant Field Values
-
TARGET
public static final java.lang.String TARGET
- See Also:
- Constant Field Values
-
VALUES
public static final java.lang.String VALUES
- See Also:
- Constant Field Values
-
ELEMENT
public static final java.lang.String ELEMENT
- See Also:
- Constant Field Values
-
TIMESTAMP
public static final java.lang.String TIMESTAMP
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SignalInstanceStereotype
protected SignalInstanceStereotype(SimulationProfile 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
-
getResultProperty
@CheckForNull public Property getResultProperty()
-
getSynchronousProperty
@CheckForNull public Property getSynchronousProperty()
-
getTargetProperty
@CheckForNull public Property getTargetProperty()
-
getValuesProperty
@CheckForNull public Property getValuesProperty()
-
getElementProperty
@CheckForNull public Property getElementProperty()
-
getTimestampProperty
@CheckForNull public Property getTimestampProperty()
-
clearResult
public void clearResult(Element element)
-
setSynchronous
public void setSynchronous(Element element, @CheckForNull java.lang.Boolean value)
-
clearSynchronous
public void clearSynchronous(Element element)
-
isSynchronous
@CheckForNull public java.lang.Boolean isSynchronous(Element element)
-
setTarget
public void setTarget(Element element, @CheckForNull java.lang.String value)
-
clearTarget
public void clearTarget(Element element)
-
getTarget
@CheckForNull public java.lang.String getTarget(Element element)
-
setValues
public void setValues(Element element, @CheckForNull java.util.Collection<? extends Element> value)
-
clearValues
public void clearValues(Element element)
-
clearElement
public void clearElement(Element element)
-
setTimestamp
public void setTimestamp(Element element, @CheckForNull java.lang.String value)
-
clearTimestamp
public void clearTimestamp(Element element)
-
getTimestamp
@CheckForNull public java.lang.String getTimestamp(Element element)
-
is
public boolean is(@CheckForNull Element element)
-
isInstance
public static boolean isInstance(@CheckForNull Element element)
-
-