summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed/FeedItem.java
blob: 09bd8f3e11f1f3e2d034d420346debf6705c801d (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
26
27
28
29
30
31
32
33
package de.podfetcher.feed;


/**
 * Data Object for a XML message
 * @author daniel
 *
 */
public class FeedItem extends FeedComponent{
	public String title;
	public String description;
	public String link;
	public String pubDate;
	public FeedMedia media;
	public Feed feed;
	public boolean read;

	public FeedItem() {
			this.read = false;
	}
	
	public FeedItem(String title, String description, String link,
			String pubDate, FeedMedia media, Feed feed) {
		super();
		this.title = title;
		this.description = description;
		this.link = link;
		this.pubDate = pubDate;
		this.media = media;
		this.feed = feed;
		this.read = false;
	}
}