summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed/Feed.java
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-26 18:39:02 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-26 18:39:02 +0200
commit0d6a7580de4bef2128468457b1b12958de63a08d (patch)
tree57895683f71949ce911b29083609bbbc1d02f40f /src/de/podfetcher/feed/Feed.java
parent7ef8a7021c91f73d746929453e43c4765dc9b90f (diff)
downloadAntennaPod-0d6a7580de4bef2128468457b1b12958de63a08d.zip
Added support for flattr-paymentlinks
Diffstat (limited to 'src/de/podfetcher/feed/Feed.java')
-rw-r--r--src/de/podfetcher/feed/Feed.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/de/podfetcher/feed/Feed.java b/src/de/podfetcher/feed/Feed.java
index bcec1e55b..59eaf7046 100644
--- a/src/de/podfetcher/feed/Feed.java
+++ b/src/de/podfetcher/feed/Feed.java
@@ -19,6 +19,7 @@ public class Feed extends FeedFile {
private ArrayList<FeedItem> items;
/** Date of last refresh. */
private Date lastUpdate;
+ private String paymentLink;
public Feed(Date lastUpdate) {
super();
@@ -97,5 +98,13 @@ public class Feed extends FeedFile {
public void setLastUpdate(Date lastUpdate) {
this.lastUpdate = lastUpdate;
}
+
+ public String getPaymentLink() {
+ return paymentLink;
+ }
+
+ public void setPaymentLink(String paymentLink) {
+ this.paymentLink = paymentLink;
+ }
}