Package com.aelitis.azureus.ui.selectedcontent

Examples of com.aelitis.azureus.ui.selectedcontent.SelectedContent


          } else {
            id += ":" + manager.getSize();
          }
        }
        SelectedContentManager.changeCurrentlySelectedContent(id, new SelectedContent[] {
          new SelectedContent(manager)
        });

       
      case UISWTViewEvent.TYPE_REFRESH:
        refresh();
View Full Code Here


    List<SelectedContent> listSelected = new ArrayList<SelectedContent>(
        dataSources.length);
    for (Object ds : dataSources) {
      if (ds instanceof DiskManagerFileInfo) {
        DiskManagerFileInfo fileInfo = (DiskManagerFileInfo) ds;
        listSelected.add(new SelectedContent(fileInfo.getDownloadManager(),
            fileInfo.getIndex()));
      }
    }
    SelectedContentManager.changeCurrentlySelectedContent(tv.getTableID(),
        listSelected.toArray(new SelectedContent[0]), tv);
View Full Code Here

    this.content = content;
    this.setDownloadManager(content.getDownloadManager());
  }

  public SelectedContentV3() {
    content = new SelectedContent();
  }
View Full Code Here

  public SelectedContentV3(String hash, String displayName, boolean isPlatformContent,
      boolean canPlay) {
    this.isPlatformContent = isPlatformContent;
    this.canPlay = canPlay;
    content = new SelectedContent(hash, displayName);
  }
View Full Code Here

    this.canPlay = canPlay;
    content = new SelectedContent(hash, displayName);
  }

  public SelectedContentV3(DownloadManager dm) throws Exception {
    content = new SelectedContent();
    setDownloadManager(dm);
  }
View Full Code Here

TOP

Related Classes of com.aelitis.azureus.ui.selectedcontent.SelectedContent

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.