Package com.nomagic.magicdraw.properties
Class BooleanProperty
- java.lang.Object
-
- com.nomagic.magicdraw.properties.Property
-
- com.nomagic.magicdraw.properties.BooleanProperty
-
- All Implemented Interfaces:
PropertyVisitorAcceptor,java.lang.Cloneable
@OpenApiAll public class BooleanProperty extends Property
The property for storing and editing boolean value.
-
-
Field Summary
-
Fields inherited from class com.nomagic.magicdraw.properties.Property
DEFAULT_PROPERTY_RESOURCE_PROVIDER, EDITABLE, NULL, NULL_ID_PROPERTY_RESOURCE_PROVIDER, UNDEFINED, VALUE, VALUE_ANNOTATIONS
-
-
Constructor Summary
Constructors Constructor Description BooleanProperty()Default constructor.BooleanProperty(java.lang.String id, boolean value)The boolean property constructor.BooleanProperty(java.lang.String id, java.lang.Boolean value)The boolean property constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(PropertyVisitor v)Accepts the given visitor.BooleanPropertyclone()Clones the property.booleangetBoolean()Returns value as boolean (primitive type).java.lang.BooleangetBooleanObject()Returns value asBooleanobject.java.lang.StringgetClassType()Returns property class type.static java.lang.StringgetStringRepresentation(java.lang.Boolean value)Returns value's string representation.java.lang.StringgetValueStringRepresentation()Returns value's string representation.protected booleanisValueCompatible(java.lang.Object value)voidsetValue(boolean value)Sets value as primitive boolean type.voidsetValue(java.lang.Object value)Sets boolean value from given Object.-
Methods inherited from class com.nomagic.magicdraw.properties.Property
_getValue, _isFrozen, _setFrozen, _setValue, addAnnotation, addPropertyChangeListener, addSource, addSources, areEqualByValue, areValuesEqual, checkFrozen, checkFrozen, createCellEditor, createTableCellRenderer, equals, firePropertyChange, generateDefaultDescriptionID, getAdditionalProperties, getAdditionalProperty, getAnnotation, getAnnotations, getDescription, getDescriptionID, getFirstElementFromSources, getGroup, getID, getIntroductoryVersion, getName, getNonEditableReason, getProjectFromSourcesOrActive, getPureDescription, getResourceProvider, getResourceProviderID, getSortableValueStringRepresentation, getSourceAsElement, getSources, getSourcesAsStream, getUndefinedString, getUndefinedString, getValue, hashCode, isEditable, isUndefinedState, removeAnnotation, removePropertyChangeListener, setAdditionalProperties, setAdditionalProperty, setAnnotations, setDescription, setDescriptionID, setEditable, setGroup, setID, setIntroductoryVersion, setNonEditableReason, setResourceProvider, setResourceProviderID, setSources, setUndefinedState, toString
-
-
-
-
Constructor Detail
-
BooleanProperty
public BooleanProperty()
Default constructor. Value of the property will be false. ID will be empty string.
-
BooleanProperty
public BooleanProperty(java.lang.String id, @CheckForNull java.lang.Boolean value)The boolean property constructor.- Parameters:
id- the ID of property.value- the boolean value of the property.
-
BooleanProperty
public BooleanProperty(java.lang.String id, boolean value)The boolean property constructor.- Parameters:
id- the ID of the property.value- the boolean value of the property.
-
-
Method Detail
-
getValueStringRepresentation
public java.lang.String getValueStringRepresentation()
Returns value's string representation.- Overrides:
getValueStringRepresentationin classProperty- Returns:
- string "True", "False" or "?" if property does not have value.
-
getStringRepresentation
public static java.lang.String getStringRepresentation(@CheckForNull java.lang.Boolean value)Returns value's string representation.- Parameters:
value- The given value.- Returns:
- String representation.
-
accept
public void accept(PropertyVisitor v) throws java.lang.Exception
Accepts the given visitor.- Specified by:
acceptin interfacePropertyVisitorAcceptor- Overrides:
acceptin classProperty- Parameters:
v- the PropertyVisitor.- Throws:
java.lang.Exception
-
getBoolean
public boolean getBoolean()
Returns value as boolean (primitive type).- Returns:
- value as primitive boolean. If value object is null, returns false.
-
getBooleanObject
public java.lang.Boolean getBooleanObject()
Returns value asBooleanobject.- Returns:
- value as
Booleanobject.
-
setValue
public void setValue(boolean value)
Sets value as primitive boolean type.- Parameters:
value- the given new boolean value.
-
setValue
public void setValue(java.lang.Object value)
Sets boolean value from given Object. ses toString
-
getClassType
public java.lang.String getClassType()
Returns property class type.- Specified by:
getClassTypein interfacePropertyVisitorAcceptor- Overrides:
getClassTypein classProperty- Returns:
- PropertyID.BOOLEAN_PROPERTY
- See Also:
PropertyID.BOOLEAN_PROPERTY
-
isValueCompatible
protected boolean isValueCompatible(java.lang.Object value)
- Overrides:
isValueCompatiblein classProperty- Returns:
- true if given object can be assigned as value to this property
-
clone
public BooleanProperty clone()
Description copied from class:PropertyClones the property. Clone is not deep, the clone will have the same instance of value. The clone will not have registered PropertyChangeListeners.
-
-