summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/feed/SimpleChapter.java
blob: 3dab1b74dd61f1b75e1f57fc06c91e3cfdd8747a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package de.danoeh.antennapod.feed;

public class SimpleChapter extends Chapter {
	public static final int CHAPTERTYPE_SIMPLECHAPTER = 0;
	
	public SimpleChapter(long start, String title, FeedItem item, String link) {
		super(start, title, item, link);
	}

	@Override
	public int getChapterType() {
		return CHAPTERTYPE_SIMPLECHAPTER;
	}

	public void updateFromOther(SimpleChapter other) {
		super.updateFromOther(other);
		start = other.start;
		if (other.title != null) {
			title = other.title;
		}
		if (other.link != null) {
			link = other.link;
		}
	}
}