Package es.emergya.ui.base.plugins

Examples of es.emergya.ui.base.plugins.AbstractPlugin


        Properties p = new Properties();
        try {
          p.load(new FileReader(module));
          String _class = p.get("CLASS").toString();

          AbstractPlugin plugin = (AbstractPlugin) Class.forName(
              _class).newInstance();
          container.addPlugin(plugin);
        } catch (Throwable e) {
          LOG.error(
              "Error trying to load module "
View Full Code Here

TOP

Related Classes of es.emergya.ui.base.plugins.AbstractPlugin

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.