Package org.gudy.azureus2.ui.swt.pluginsimpl

Examples of org.gudy.azureus2.ui.swt.pluginsimpl.UISWTViewImpl.initialize()


            speed_download.moveTo( 1 );
           
            speed_download.setFlag( Download.FLAG_DISABLE_AUTO_FILE_MOVE, true );
           
            core_download.initialize();
           
            core_download.setForceStart( true );
           
            TorrentSpeedTestMonitorThread monitor = new TorrentSpeedTestMonitorThread( speed_download );
           
View Full Code Here


    }else if ( platformType == PlatformManager.PT_MACOSX ){
      org.gudy.azureus2.platform.macosx.PlatformManagerUpdateChecker plugin = new org.gudy.azureus2.platform.macosx.PlatformManagerUpdateChecker();
      plugin.initialize(pluginInterface);
    }else if ( platformType == PlatformManager.PT_UNIX ){
      PlatformManagerUnixPlugin plugin = new PlatformManagerUnixPlugin();
      plugin.initialize(pluginInterface);
    }else{
      Properties pluginProperties = pluginInterface.getPluginProperties();
      pluginProperties.setProperty("plugin.name", "Platform-Specific Support");
      pluginProperties.setProperty("plugin.version", "1.0");
      pluginProperties.setProperty("plugin.version.info",
View Full Code Here

          if (item != null) {
            IView view = (IView)item.getData("IView");
            activeView = view;
            
            if (item.getControl() == null) {
              view.initialize(folder);
              item.setControl(view.getComposite());
            }
           
            item.getControl().setFocus();
View Full Code Here

   
    final FilesView view = new FilesView(false);
    view.dataSourceChanged(dm);

    view.initialize(shell);

    Composite composite = view.getComposite();
    //composite.setLayoutData(null);
    shell.setLayout(new FillLayout());
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.