Home
last modified time | relevance | path

Searched refs:podcastFeedEntry (Results 1 – 8 of 8) sorted by relevance

/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/kernel/modules/podcast/
H A DPodcastFeedEntryDownloader.java57 private IPodcastFeedEntry podcastFeedEntry; field in PodcastFeedEntryDownloader
128 public void download(IPodcastFeedEntry podcastFeedEntry, in download() argument
130 this.podcastFeedEntry = podcastFeedEntry; in download()
144 podcastFeedHandler.cancelDownloading(podcastFeedEntry, dialog, in before()
148 dialog.setInfoText(podcastFeedEntry.getTitle()); in before()
159 .getDownloadPath(podcastFeedEntry); in doInBackground()
167 URLConnection conn = networkHandler.getConnection(podcastFeedEntry in doInBackground()
206 podcastFeedHandler.cancelDownloading(podcastFeedEntry, dialog, in whileWorking()
273 Logger.info("Download of " + podcastFeedEntry.getUrl() in done()
275 podcastFeedEntry.setDownloaded(true); in done()
[all …]
H A DPodcastFeedHandler.java303 final IPodcastFeedEntry podcastFeedEntry) { in downloadPodcastFeedEntry() argument
304 if (isDownloading(podcastFeedEntry)) { in downloadPodcastFeedEntry()
311 downloadPodcastFeedEntry.download(podcastFeedEntry, in downloadPodcastFeedEntry()
362 + podcastFeedEntry.getTitle()); in cancelDownloading()
382 if (podcastFeedEntry.getPodcastFeed().getName() == null in getDownloadPath()
390 String.valueOf(podcastFeedEntry.getPodcastFeed() in getDownloadPath()
454 File f = new File(getDownloadPath(podcastFeedEntry)); in isDownloaded()
467 final IPodcastFeedEntry podcastFeedEntry) { in deleteDownloadedPodcastFeedEntry() argument
468 File f = new File(getDownloadPath(podcastFeedEntry)); in deleteDownloadedPodcastFeedEntry()
470 podcastFeedEntry); in deleteDownloadedPodcastFeedEntry()
[all …]
H A DDeleteDownloadedPodcastFeedBackgroundWorker.java40 private IPodcastFeedEntry podcastFeedEntry; field in DeleteDownloadedPodcastFeedBackgroundWorker
50 protected void delete(File f, IPodcastFeedEntry podcastFeedEntry) { in delete() argument
52 this.podcastFeedEntry = podcastFeedEntry; in delete()
72 podcastFeedEntry.setDownloaded(false); in done()
H A DPodcastFeedEntryDownloadChecker.java56 for (IPodcastFeedEntry podcastFeedEntry : podcastFeedHandler.getPodcastFeedEntries()) { in run()
57 … files.put(podcastFeedEntry, new File(podcastFeedHandler.getDownloadPath(podcastFeedEntry))); in run()
H A DPodcastFeed.java150 public synchronized void removeEntry(final IPodcastFeedEntry podcastFeedEntry) { in removeEntry() argument
151 podcastFeedEntries.remove(podcastFeedEntry); in removeEntry()
/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/model/
H A DIPodcastFeedHandler.java74 final IPodcastFeedEntry podcastFeedEntry); in downloadPodcastFeedEntry() argument
84 public String getDownloadPath(IPodcastFeedEntry podcastFeedEntry); in getDownloadPath() argument
94 public boolean isDownloaded(IPodcastFeedEntry podcastFeedEntry); in isDownloaded() argument
103 final IPodcastFeedEntry podcastFeedEntry); in deleteDownloadedPodcastFeedEntry() argument
113 public boolean isDownloading(IPodcastFeedEntry podcastFeedEntry); in isDownloading() argument
H A DIPodcastFeed.java105 public void removeEntry(IPodcastFeedEntry podcastFeedEntry); in removeEntry() argument
/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/kernel/modules/player/mplayer/
H A DPodcastFeedEntryMPlayerOutputReader.java35 private IPodcastFeedEntry podcastFeedEntry; field in PodcastFeedEntryMPlayerOutputReader
42 public void setPodcastFeedEntry(final IPodcastFeedEntry podcastFeedEntry) { in setPodcastFeedEntry() argument
43 this.podcastFeedEntry = podcastFeedEntry; in setPodcastFeedEntry()
55 readAndApplyLength(this.podcastFeedEntry, line, false); in read()