Difference between revisions of "Query system (extension point)"
From BioUML platform
Tagir Valeev (Talk | contribs) (Created page with "{{Extension point|querySystem|ru.biosoft.access}} === Description === This extension point allows to register classes which can be used as DataCollection query system. === Co...") |
Latest revision as of 14:38, 13 September 2013
- Identifier
- ru.biosoft.access.querySystem
- Plugin
- ru.biosoft.access
[edit] Description
This extension point allows to register classes which can be used as DataCollection query system.
[edit] Configuration Markup
<!ELEMENT querySystem> <!ATTLIST querySystem class CDATA #REQUIRED >
- class
- Fully-qualified name of the query system class (must implement
QuerySystem
interface).
[edit] Example
<extension id="lucene query system" point="ru.biosoft.access.querySystem"> <querySystem class="biouml.plugins.lucene.LuceneQuerySystemImpl"/> </extension>
This extension registers LuceneQuerySystemImpl
as possible query system class.