Package de.hpi.eworld.core.extensionpoints

Examples of de.hpi.eworld.core.extensionpoints.MenuProviderInterface


        {
          getManager().activatePlugin(ext.getDeclaringPluginDescriptor().getId());
        }
        Class<?> menuCls = loadPlugin(ext);
        // Create Tool instance.
        MenuProviderInterface menuProvider = (MenuProviderInterface) menuCls.newInstance();
        // Initialize class instance according to interface contract.
        menuProvider.init(menu);
      } catch (Throwable t) {
        displayPluginLoadErrorMsg(t, ext);
        log.error("Error while trying to initialize menu provider plugin", t);
      }
    }
View Full Code Here

TOP

Related Classes of de.hpi.eworld.core.extensionpoints.MenuProviderInterface

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.