Package plugin

Examples of plugin.IPlugin


          //reverse(data);

          Class c = defineClass(name, data, 0, data.length);
          try
          {
            IPlugin plugin = (IPlugin) c.newInstance();
            System.out.println("Class found : " + plugin.getName());
            filters_.add(plugin);
          } catch (Exception e)
          {
            System.out.println("Fail on defining class");
            e.printStackTrace();
View Full Code Here

TOP

Related Classes of plugin.IPlugin

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.