Package de.hpi.eworld.visualizer.extensionpoints

Examples of de.hpi.eworld.visualizer.extensionpoints.VisualizerPluginProviderInterface


                        ext.getDeclaringPluginDescriptor());
                // Load Tool class.
                Class<?> importCls = classLoader.loadClass(
                        ext.getParameter("class").valueAsString());
                // Create Tool instance.
                VisualizerPluginProviderInterface visualizerPluginProvider = (VisualizerPluginProviderInterface) importCls.newInstance();
                // Initialize class instance according to interface contract.
                visualizerPluginProvider.init(null, parentWindow);
            } catch (Throwable t) {
              log.error(t.getMessage());
            }
        }
  }
View Full Code Here

TOP

Related Classes of de.hpi.eworld.visualizer.extensionpoints.VisualizerPluginProviderInterface

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.