Package com.nomagic.magicdraw.properties
Class ColorProperty
- java.lang.Object
 - 
- com.nomagic.magicdraw.properties.Property
 - 
- com.nomagic.magicdraw.properties.ColorProperty
 
 
 
- 
- All Implemented Interfaces:
 PropertyVisitorAcceptor,java.lang.Cloneable
@OpenApiAll public class ColorProperty extends Property
The property for storing and editing some Color value. 
- 
- 
Field Summary
Fields Modifier and Type Field Description static java.lang.StringALLOW_NONE- 
Fields inherited from class com.nomagic.magicdraw.properties.Property
DEFAULT_PROPERTY_RESOURCE_PROVIDER, EDITABLE, NULL, NULL_ID_PROPERTY_RESOURCE_PROVIDER, UNDEFINED, VALUE 
 - 
 
- 
Constructor Summary
Constructors Constructor Description ColorProperty()Default constructor.ColorProperty(java.lang.String id, java.awt.Color value)The property constructor. 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(PropertyVisitor v)Accepts the given visitor.ColorPropertyclone()Clones the property.java.lang.StringgetClassType()Returns property class type.java.awt.ColorgetColor()Returns value as color object.static java.lang.StringgetStringRepresentation(java.awt.Color c)java.lang.StringgetValueStringRepresentation()Returns value's string representation.protected booleanisValueCompatible(java.lang.Object value)- 
Methods inherited from class com.nomagic.magicdraw.properties.Property
_getValue, _isFrozen, _setFrozen, _setValue, addPropertyChangeListener, addSource, addSources, areValuesEqual, checkFrozen, checkFrozen, createCellEditor, createTableCellRenderer, equals, firePropertyChange, generateDefaultDescriptionID, getAdditionalProperties, getAdditionalProperty, getDescription, getDescriptionID, getFirstElementFromSources, getGroup, getID, getIntroductoryVersion, getName, getNonEditableReason, getProjectFromSourcesOrActive, getPureDescription, getResourceProvider, getResourceProviderID, getSourceAsElement, getSources, getSourcesAsStream, getUndefinedString, getUndefinedString, getValue, hashCode, isEditable, isUndefinedState, removePropertyChangeListener, setAdditionalProperties, setAdditionalProperty, setDescription, setDescriptionID, setEditable, setGroup, setID, setIntroductoryVersion, setNonEditableReason, setResourceProvider, setResourceProviderID, setSources, setUndefinedState, setValue, toString 
 - 
 
 - 
 
- 
- 
Field Detail
- 
ALLOW_NONE
public static final java.lang.String ALLOW_NONE
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Constructor Detail
- 
ColorProperty
public ColorProperty()
Default constructor. Value of the property will be null. ID will be empty string. 
- 
ColorProperty
public ColorProperty(java.lang.String id, @CheckForNull java.awt.Color value)The property constructor.- Parameters:
 id- the ID of property.value- the color value of the property.
 
 - 
 
- 
Method Detail
- 
getValueStringRepresentation
public java.lang.String getValueStringRepresentation()
Returns value's string representation.- Overrides:
 getValueStringRepresentationin classProperty- Returns:
 - value's string representation - "RGB [red, green, blue]". If value null, returns "
".  
 
- 
getStringRepresentation
public static java.lang.String getStringRepresentation(java.awt.Color c)
 
- 
isValueCompatible
protected boolean isValueCompatible(java.lang.Object value)
- Overrides:
 isValueCompatiblein classProperty- Returns:
 - true if given object can be assigned as value to this property
 
 
- 
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
 
- 
getColor
public java.awt.Color getColor()
Returns value as color object.- Returns:
 - value as color.
 
 
- 
getClassType
public java.lang.String getClassType()
Returns property class type.- Specified by:
 getClassTypein interfacePropertyVisitorAcceptor- Overrides:
 getClassTypein classProperty- Returns:
 - PropertyID.COLOR_PROPERTY
 - See Also:
 PropertyID.COLOR_PROPERTY
 
- 
clone
public ColorProperty 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. 
 - 
 
 -