summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/feed
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-09-21 19:46:08 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-09-21 19:46:08 +0200
commit48292609f6586fbb85ed59a4a46a5e23e49fba61 (patch)
tree38c122820301e6bfafb7c4029d520ad2f1c1d405 /src/de/danoeh/antennapod/feed
parent0eb841db4b2c340c5c5200e5fb655482ee98cfc6 (diff)
downloadAntennaPod-48292609f6586fbb85ed59a4a46a5e23e49fba61.zip
MediaHandler now reads id3 chapters
Diffstat (limited to 'src/de/danoeh/antennapod/feed')
-rw-r--r--src/de/danoeh/antennapod/feed/FeedItem.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/de/danoeh/antennapod/feed/FeedItem.java b/src/de/danoeh/antennapod/feed/FeedItem.java
index 59702c6ff..3fa9a66b8 100644
--- a/src/de/danoeh/antennapod/feed/FeedItem.java
+++ b/src/de/danoeh/antennapod/feed/FeedItem.java
@@ -2,6 +2,7 @@ package de.danoeh.antennapod.feed;
import java.util.ArrayList;
import java.util.Date;
+import java.util.List;
/**
* Data Object for a XML message
@@ -22,7 +23,7 @@ public class FeedItem extends FeedComponent {
private Feed feed;
protected boolean read;
private String paymentLink;
- private ArrayList<Chapter> chapters;
+ private List<Chapter> chapters;
public FeedItem() {
this.read = true;
@@ -144,11 +145,11 @@ public class FeedItem extends FeedComponent {
this.paymentLink = paymentLink;
}
- public ArrayList<Chapter> getChapters() {
+ public List<Chapter> getChapters() {
return chapters;
}
- public void setChapters(ArrayList<Chapter> chapters) {
+ public void setChapters(List<Chapter> chapters) {
this.chapters = chapters;
}