Class ColorProperty
java.lang.Object
org.csstudio.opibuilder.properties.AbstractWidgetProperty<OPIColor>
org.csstudio.opibuilder.properties.ColorProperty
The widget property for color.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
XML attribute nameblue
.static final String
XML attribute namegreen
.static final String
XML attribute namecolor
.static final String
XML attribute namered
.static final String
XML attribute namecolor
.Fields inherited from class org.csstudio.opibuilder.properties.AbstractWidgetProperty
category, defaultValue, description, executionMode, prop_id, propertyValue, visibleInPropSheet, widgetModel
-
Constructor Summary
ConstructorDescriptionColorProperty
(String prop_id, String description, WidgetPropertyCategory category, String defaultValue) Color Property Constructor.ColorProperty
(String prop_id, String description, WidgetPropertyCategory category, RGB defaultValue) Color Property Constructor. -
Method Summary
Modifier and TypeMethodDescriptioncheckValue
(Object value) Check if the requestNewValue is convertible or legal.boolean
Subclass should override this method if it is configurable by rule.protected PropertyDescriptor
Create theIPropertyDescriptor
readValueFromXML
(org.jdom2.Element propElement) Read the property value from a XML element.toStringInRuleScript
(OPIColor opiColor) Convert to the property value string in the script generated by rule.void
writeToXML
(org.jdom2.Element propElement) Write the property value into a XML element.Methods inherited from class org.csstudio.opibuilder.properties.AbstractWidgetProperty
addPropertyChangeListener, firePropertyChange, getAllPropertyChangeListeners, getCategory, getDefaultValue, getDescription, getExecutionMode, getPropertyDescriptor, getPropertyID, getPropertyValue, getRawPropertyValue, isDefaultValue, isSavable, isVisibleInPropSheet, onlyAcceptExpressionInRule, removeAllPropertyChangeListeners, removePropertyChangeListener, setCategory, setDefaultValue, setDescription, setExecutionMode, setPropertyValue, setPropertyValue, setPropertyValue_IgnoreOldValue, setSavable, setVisibleInPropSheet, setWidgetModel, toString
-
Field Details
-
XML_ELEMENT_COLOR
XML attribute namecolor
.- See Also:
-
XML_ATTRIBUTE_NAME
XML attribute namecolor
.- See Also:
-
XML_ATTRIBUTE_RED
XML attribute namered
.- See Also:
-
XML_ATTRIBUTE_GREEN
XML attribute namegreen
.- See Also:
-
XML_ATTRIBUTE_BLUE
XML attribute nameblue
.- See Also:
-
-
Constructor Details
-
ColorProperty
public ColorProperty(String prop_id, String description, WidgetPropertyCategory category, RGB defaultValue) Color Property Constructor. The property value type isOPIColor
.- Parameters:
prop_id
- the property id which should be unique in a widget model.description
- the description of the property, which will be shown as the property name in property sheet.category
- the category of the widget.defaultValue
- the default value when the widget is first created.
-
ColorProperty
public ColorProperty(String prop_id, String description, WidgetPropertyCategory category, String defaultValue) Color Property Constructor. The property value type isOPIColor
.- Parameters:
prop_id
- the property id which should be unique in a widget model.description
- the description of the property, which will be shown as the property name in property sheet.category
- the category of the widget.defaultValue
- the default value when the widget is first created. It must be a color macro name in color file.
-
-
Method Details
-
checkValue
Description copied from class:AbstractWidgetProperty
Check if the requestNewValue is convertible or legal.- Specified by:
checkValue
in classAbstractWidgetProperty<OPIColor>
- Parameters:
value
- the value to be checked.- Returns:
- The value after being checked. It might be coerced if the requestValue is illegal. return null if it is not convertible or illegal.
-
createPropertyDescriptor
Description copied from class:AbstractWidgetProperty
Create theIPropertyDescriptor
- Specified by:
createPropertyDescriptor
in classAbstractWidgetProperty<OPIColor>
-
writeToXML
public void writeToXML(org.jdom2.Element propElement) Description copied from class:AbstractWidgetProperty
Write the property value into a XML element.- Specified by:
writeToXML
in classAbstractWidgetProperty<OPIColor>
-
readValueFromXML
Description copied from class:AbstractWidgetProperty
Read the property value from a XML element.- Specified by:
readValueFromXML
in classAbstractWidgetProperty<OPIColor>
-
configurableByRule
public boolean configurableByRule()Description copied from class:AbstractWidgetProperty
Subclass should override this method if it is configurable by rule. If this returns true, the methodAbstractWidgetProperty.toStringInRuleScript(Object)
should be properly overridden too.- Overrides:
configurableByRule
in classAbstractWidgetProperty<OPIColor>
- Returns:
- true if this property is configurable by rule.
-
toStringInRuleScript
Description copied from class:AbstractWidgetProperty
Convert to the property value string in the script generated by rule.- Overrides:
toStringInRuleScript
in classAbstractWidgetProperty<OPIColor>
-