summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/feed/ID3Chapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/danoeh/antennapod/feed/ID3Chapter.java')
-rw-r--r--src/de/danoeh/antennapod/feed/ID3Chapter.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/de/danoeh/antennapod/feed/ID3Chapter.java b/src/de/danoeh/antennapod/feed/ID3Chapter.java
deleted file mode 100644
index 6dde7854e..000000000
--- a/src/de/danoeh/antennapod/feed/ID3Chapter.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package de.danoeh.antennapod.feed;
-
-public class ID3Chapter extends Chapter {
- public static final int CHAPTERTYPE_ID3CHAPTER = 2;
-
- /**
- * Identifies the chapter in its ID3 tag. This attribute does not have to be
- * store in the DB and is only used for parsing.
- */
- private String id3ID;
-
- public ID3Chapter(String id3ID, long start) {
- super(start);
- this.id3ID = id3ID;
- }
-
- public ID3Chapter(long start, String title, FeedItem item, String link) {
- super(start, title, item, link);
- }
-
- @Override
- public String toString() {
- return "ID3Chapter [id3ID=" + id3ID + ", title=" + title + ", start="
- + start + ", url=" + link + "]";
- }
-
- @Override
- public int getChapterType() {
- return CHAPTERTYPE_ID3CHAPTER;
- }
-
- public String getId3ID() {
- return id3ID;
- }
-
-}