Package org.jboss.seam.wiki.core.plugin.binding

Examples of org.jboss.seam.wiki.core.plugin.binding.PluginBinder


    public void startup() {
        log.info("initializing plugin registry");

        for (Class pluginBinderClass : PLUGIN_BINDERS) {
            log.debug("calling plugin binder: " + pluginBinderClass.getName());
            PluginBinder pluginBinder = (PluginBinder)Component.getInstance(pluginBinderClass);
            pluginBinder.installPlugins(this);
        }

        log.info("registered plugins: " + plugins.size());
    }
View Full Code Here

TOP

Related Classes of org.jboss.seam.wiki.core.plugin.binding.PluginBinder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.