From ba2d2afbbc6cbb79fc75493703425b5d6d040530 Mon Sep 17 00:00:00 2001 From: daniel oeh Date: Fri, 13 Jul 2012 12:23:47 +0200 Subject: Renamed package and application --- src/de/danoeh/antennapod/feed/FeedImage.java | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/de/danoeh/antennapod/feed/FeedImage.java (limited to 'src/de/danoeh/antennapod/feed/FeedImage.java') diff --git a/src/de/danoeh/antennapod/feed/FeedImage.java b/src/de/danoeh/antennapod/feed/FeedImage.java new file mode 100644 index 000000000..4b53f3da4 --- /dev/null +++ b/src/de/danoeh/antennapod/feed/FeedImage.java @@ -0,0 +1,32 @@ +package de.danoeh.antennapod.feed; + + +public class FeedImage extends FeedFile { + protected String title; + + public FeedImage(String download_url, String title) { + super(null, download_url, false); + this.download_url = download_url; + this.title = title; + } + + public FeedImage(long id, String title, String file_url, + String download_url, boolean downloaded) { + super(file_url, download_url, downloaded); + this.id = id; + this.title = title; + } + + public FeedImage() { + super(); + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + +} -- cgit v1.2.3