CARMA Action Validators
Identifier: com.ibm.carma.ui.actionValidators
Since: 8.0
Description: This extension point is used to register action validators. Action validators can be used to create custom validation of action input in the CARMA user interface.
Configuration Markup:
<!ELEMENT extension (actionValidator*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
- point - fully qualified identifier of the target extension point
- id - an optional identifier of the extension instance
- name - an optional name of the extension instance
<!ELEMENT actionValidator EMPTY>
<!ATTLIST actionValidator
actionId CDATA #REQUIRED
uniqueId CDATA #REQUIRED
class CDATA #REQUIRED>
Defines a custom action validator
- actionId - the identifier of the action as defined in the CARMA RAM
- uniqueId - the unique identifier of the CARMA RAM
- class - the action validator implementation, must implement IActionValidator
Examples: Registering an action validator:
<extension point="com.ibm.carma.ui.actionValidators">
<actionValidator
actionId="042"
uniqueId="MYRAM"
class="com.example.MyActionValidator"/>
</extension>
API Information: The value of the class attribute must represent an implementor of com.ibm.carma.ui.events.IActionValidator.
Supplied Implementation: Plug-ins may use this extension point to add custom action validation to actions defined in a CARMA RAM.
Copyright IBM Corp. 2010 All Rights Reserved
|
This information center is powered by Eclipse technology. (http://www.eclipse.org)