Package org.mage.plugins.card

Examples of org.mage.plugins.card.CardPluginImpl


    @Override
    public void loadPlugins() {
        logger.info("Loading plugins...");
        pm = PluginManagerFactory.createPluginManager();
        pm.addPluginsFrom(new File(PLUGINS_DIRECTORY).toURI());
        this.cardPlugin = new CardPluginImpl();
        this.counterPlugin = pm.getPlugin(CounterPlugin.class);
        //this.themePlugin = pm.getPlugin(ThemePlugin.class);
        this.themePlugin = new ThemePluginImpl();
        logger.info("Done.");
    }
View Full Code Here

TOP

Related Classes of org.mage.plugins.card.CardPluginImpl

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.