Element Contributor
Identifier:
com.yakindu.bridges.ea.uml.elementContributor
Since:
1.0.0
Description:
This extension point provides a mechanism to extend and influence the loading and saving of EA models.
Extensions may load additional elements (such as EAnnotations) and perform additional save operations such as writing additional information to the database.
See Javadoc of IElementContributor for details how that extension mechanism works.
Configuration Markup:
<!ELEMENT extension (elementcontributor+)+>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT elementcontributor EMPTY>
<!ATTLIST elementcontributor
element_contributor CDATA #REQUIRED>
- element_contributor - The element contributor class must implement the IElementContributor interface.
Examples:
The following is an example of the extension point:
<extension point="com.yakindu.bridges.ea.uml.elementContributor">
<elementcontributor element_contributor="com.examples.contributors.MyElementContributor" />