Package com.nomagic.magicdraw.sysml.util
Class SysMLProfile.IntervalStereotype
- java.lang.Object
-
- com.nomagic.profiles.ProfileImplementation.StereotypeWrapper
-
- com.nomagic.magicdraw.sysml.util.SysMLProfile.IntervalStereotype
-
- Enclosing class:
- SysMLProfile
public static class SysMLProfile.IntervalStereotype extends ProfileImplementation.StereotypeWrapper
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
MAX
static java.lang.String
MIN
static java.lang.String
STEREOTYPE_NAME
-
Constructor Summary
Constructors Modifier Constructor Description protected
IntervalStereotype(SysMLProfile profile)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearMax(Element element)
void
clearMin(Element element)
java.lang.Double
getMax(Element element)
Property
getMaxProperty()
java.lang.Double
getMin(Element element)
Property
getMinProperty()
Stereotype
getStereotype()
Returns stereotype for this wrapper.boolean
is(Element element)
static boolean
isInstance(Element element)
void
setMax(Element element, java.lang.Double value)
void
setMin(Element element, java.lang.Double 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
-
MAX
public static final java.lang.String MAX
- See Also:
- Constant Field Values
-
MIN
public static final java.lang.String MIN
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IntervalStereotype
protected IntervalStereotype(SysMLProfile 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
-
getMaxProperty
@CheckForNull public Property getMaxProperty()
-
getMinProperty
@CheckForNull public Property getMinProperty()
-
setMax
public void setMax(Element element, @CheckForNull java.lang.Double value)
-
clearMax
public void clearMax(Element element)
-
getMax
@CheckForNull public java.lang.Double getMax(Element element)
-
setMin
public void setMin(Element element, @CheckForNull java.lang.Double value)
-
clearMin
public void clearMin(Element element)
-
getMin
@CheckForNull public java.lang.Double getMin(Element element)
-
is
public boolean is(@CheckForNull Element element)
-
isInstance
public static boolean isInstance(@CheckForNull Element element)
-
-