Package com.nomagic.magicdraw.uimodeling
Class UIPrototypingProfile.ProgressBarStereotype
- java.lang.Object
-
- com.nomagic.profiles.ProfileImplementation.StereotypeWrapper
-
- com.nomagic.magicdraw.uimodeling.UIPrototypingProfile.ProgressBarStereotype
-
- Enclosing class:
- UIPrototypingProfile
public static class UIPrototypingProfile.ProgressBarStereotype extends ProfileImplementation.StereotypeWrapper
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
MAXIMUM_VALUE
static java.lang.String
MINIMUM_VALUE
static java.lang.String
STEREOTYPE_NAME
static java.lang.String
VALUE
static java.lang.String
VERTICAL
-
Constructor Summary
Constructors Modifier Constructor Description protected
ProgressBarStereotype(UIPrototypingProfile profile)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
clear()
void
clearMaximumValue(Element element)
void
clearMinimumValue(Element element)
void
clearValue(Element element)
void
clearVertical(Element element)
java.lang.Integer
getMaximumValue(Element element)
Property
getMaximumValueProperty()
java.lang.Integer
getMinimumValue(Element element)
Property
getMinimumValueProperty()
Stereotype
getStereotype()
Returns stereotype for this wrapper.java.lang.Integer
getValue(Element element)
Property
getValueProperty()
Property
getVerticalProperty()
boolean
is(Element element)
static boolean
isInstance(Element element)
java.lang.Boolean
isVertical(Element element)
void
setMaximumValue(Element element, java.lang.Integer value)
void
setMinimumValue(Element element, java.lang.Integer value)
void
setValue(Element element, java.lang.Integer value)
void
setVertical(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
-
VALUE
public static final java.lang.String VALUE
- See Also:
- Constant Field Values
-
VERTICAL
public static final java.lang.String VERTICAL
- See Also:
- Constant Field Values
-
MAXIMUM_VALUE
public static final java.lang.String MAXIMUM_VALUE
- See Also:
- Constant Field Values
-
MINIMUM_VALUE
public static final java.lang.String MINIMUM_VALUE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ProgressBarStereotype
protected ProgressBarStereotype(UIPrototypingProfile 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
-
getValueProperty
@CheckForNull public Property getValueProperty()
-
getVerticalProperty
@CheckForNull public Property getVerticalProperty()
-
getMaximumValueProperty
@CheckForNull public Property getMaximumValueProperty()
-
getMinimumValueProperty
@CheckForNull public Property getMinimumValueProperty()
-
setValue
public void setValue(Element element, java.lang.Integer value)
-
clearValue
public void clearValue(Element element)
-
getValue
@CheckForNull public java.lang.Integer getValue(Element element)
-
setVertical
public void setVertical(Element element, java.lang.Boolean value)
-
clearVertical
public void clearVertical(Element element)
-
isVertical
@CheckForNull public java.lang.Boolean isVertical(Element element)
-
setMaximumValue
public void setMaximumValue(Element element, java.lang.Integer value)
-
clearMaximumValue
public void clearMaximumValue(Element element)
-
getMaximumValue
@CheckForNull public java.lang.Integer getMaximumValue(Element element)
-
setMinimumValue
public void setMinimumValue(Element element, java.lang.Integer value)
-
clearMinimumValue
public void clearMinimumValue(Element element)
-
getMinimumValue
@CheckForNull public java.lang.Integer getMinimumValue(Element element)
-
clear
protected void clear()
-
is
public boolean is(@CheckForNull Element element)
-
isInstance
public static boolean isInstance(@CheckForNull Element element)
-
-