summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/feed/SimpleChapter.java
blob: 7b74f28f69e658d76a5cb25f32ae33dcf527fe46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
	}

}