summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/feed/Chapter.java
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2014-09-17 20:51:45 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2014-09-17 20:51:45 +0200
commit072639b5b22e816df9f78b5cd8a7d4e5379b6aff (patch)
tree341c574bd6eb64497470e7226b3222b0a7c5a824 /src/de/danoeh/antennapod/feed/Chapter.java
parent76add8ef68dbc9997e901f4c11c397f581e8eabe (diff)
downloadAntennaPod-072639b5b22e816df9f78b5cd8a7d4e5379b6aff.zip
Changed project structure
Switched from custom layout to standard gradle project structure
Diffstat (limited to 'src/de/danoeh/antennapod/feed/Chapter.java')
-rw-r--r--src/de/danoeh/antennapod/feed/Chapter.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/de/danoeh/antennapod/feed/Chapter.java b/src/de/danoeh/antennapod/feed/Chapter.java
deleted file mode 100644
index d6151ee9f..000000000
--- a/src/de/danoeh/antennapod/feed/Chapter.java
+++ /dev/null
@@ -1,55 +0,0 @@
-package de.danoeh.antennapod.feed;
-
-public abstract class Chapter extends FeedComponent {
-
- /** Defines starting point in milliseconds. */
- protected long start;
- protected String title;
- protected String link;
-
- public Chapter() {
- }
-
- public Chapter(long start) {
- super();
- this.start = start;
- }
-
- public Chapter(long start, String title, FeedItem item, String link) {
- super();
- this.start = start;
- this.title = title;
- this.link = link;
- }
-
- public abstract int getChapterType();
-
- public long getStart() {
- return start;
- }
-
- public String getTitle() {
- return title;
- }
-
- public String getLink() {
- return link;
- }
-
- public void setStart(long start) {
- this.start = start;
- }
-
- public void setTitle(String title) {
- this.title = title;
- }
-
- public void setLink(String link) {
- this.link = link;
- }
-
- @Override
- public String getHumanReadableIdentifier() {
- return title;
- }
-}