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

public class SimpleChapter extends FeedComponent {
	public long getStart() {
		return start;
	}
		
	public SimpleChapter(long start, String title) {
		super();
		this.start = start;
		this.title = title;
	}

	public String getTitle() {
		return title;
	}
	/** Defines starting point in milliseconds. */
	private long start;
	private String title;
	
	
}