Package plugin.common

Examples of plugin.common.Plugin




  public Plugin instatiate(PluginType type, String name) {
    logger.info("trying to instatiate filter: " + name);
    Plugin ret = null;
    try {
      ret = this.plugins.get(type).get(name).newInstance();
      logger.info("instatiation successful");
    } catch (InstantiationException e) {
      logger.throwing(this.getClass().toString(), "instatiate()", e);
View Full Code Here

TOP

Related Classes of plugin.common.Plugin

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.