AutowireHelper

From OS.bee documentation
Revision as of 07:51, 5 October 2017 by Worayeno (Talk | contribs) (Created page with "To include a custom autowire helper as delegate for the Service to use an entry in the plugin.xml is required. See the following code as template: <syntaxhighlight lang="xml"...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

To include a custom autowire helper as delegate for the Service to use an entry in the plugin.xml is required. See the following code as template:

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
     <extension
           point="org.lunifera.ecview.dsl.autowireDelegate">
        <autowireDelegate
              autowireDelegateClass="de.compex.autowirehelper.AutowireHelper"
              id="de.compex.autowireHelper.autowireDelegate">
        </autowireDelegate>
     </extension>
</plugin>