Package xnap.net

Examples of xnap.net.AutoDownload$SearchThread


    // --- Method(s) ---

    public IDownloadContainer createDownload()
    {
  return new AutoDownload(this);
    }
View Full Code Here


    setStatus(XNap.tr("Already downloading that file."));
      }
  }

  if (autoDownload) {
      AutoDownload d = new AutoDownload(results, filter, file);
      if (!DownloadQueue.getInstance().add(d)) {
    setStatus(XNap.tr("Already downloading that file."));
      }
  }
    }
View Full Code Here

    public abstract IDownload getDownload();
   
    public boolean download(SearchFilter filter, File file)
    {
  AutoDownload d = new AutoDownload(new ISearchResult[] { this },
            filter, file);
  return DownloadQueue.getInstance().add(d);
    }
View Full Code Here

TOP

Related Classes of xnap.net.AutoDownload$SearchThread

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.