Data collection listener (extension point)
From BioUML platform
- Identifier
- ru.biosoft.access.dataCollectionListener
- Plugin
- ru.biosoft.access
Description
This extension point allows to register classes which can be used as listeners for data collections. Only registered listeners will be added automatically if specified in initial data collection properties (see the constructor of AbstractDataCollection
).
Configuration Markup
<!ELEMENT dataCollectionListener> <!ATTLIST dataCollectionListener class CDATA #REQUIRED >
- class
- Fully-qualified name of the data collection listener class (must implement
DataCollectionListener
interface).
Example
<extension id="lucene DataCollection listener" point="ru.biosoft.access.dataCollectionListener"> <dataCollectionListener class="biouml.plugins.lucene.LuceneInitListener"/> </extension>
This extension registers LuceneInitListener
as possible data collection listener class.