Examples of PluginInterface


Examples of org.gudy.azureus2.plugins.PluginInterface

    String                _resource_prefix,
    final UIFunctions.actionListener  _action_listener )
  {
    plugin_id     = _plugin_id;
   
    PluginInterface existing = AzureusCoreFactory.getSingleton().getPluginManager().getPluginInterfaceByID( plugin_id );
   
    if ( existing != null ){
     
      if ( existing.getPluginState().isOperational()){
       
        _action_listener.actionComplete( true );
       
      }else{
       
View Full Code Here

Examples of org.gudy.azureus2.plugins.PluginInterface

            listener.failed( new Exception( "NAT traversal failed, initialisation not complete" ));
           
            return;
          }

          PluginInterface dht_pi =
            core.getPluginManager().getPluginInterfaceByClass( DHTPlugin.class );
         
          if ( dht_pi != null ){
           
            DHTPlugin dht_plugin = (DHTPlugin)dht_pi.getPlugin();
           
            if ( dht_plugin.isEnabled()){
             
              DHT dht = dht_plugin.getDHT( DHT.NW_MAIN );
             
View Full Code Here

Examples of org.megatome.frame2.plugin.PluginInterface

      return;
    }

    for (PluginProxy proxy : proxys) {
      try {
        PluginInterface plugin = proxy.getPlugin();
        plugin.init(context, proxy.getInitParams());
      } catch (PluginException e) {
        LOGGER
            .warn("Warning: initPlugins(), Unable to initialize plugin: " + proxy.getName() + " (" + e.getMessage() + ")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
        proxy.setInitThrewException(true);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.