summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed/FeedCategory.java
diff options
context:
space:
mode:
authorDaniel Oeh <daniel@daniel-pc.(none)>2011-12-25 15:01:23 +0100
committerDaniel Oeh <daniel@daniel-pc.(none)>2011-12-25 15:01:23 +0100
commitd63097d6969caea5b7687a8d609512da4c7c05ef (patch)
tree41e7996b68da727435cc3f28c2678e01209ca305 /src/de/podfetcher/feed/FeedCategory.java
parent1a9c6053df16e7aa1f02618c16d13df1f4cc2e16 (diff)
downloadAntennaPod-d63097d6969caea5b7687a8d609512da4c7c05ef.zip
Added some more getters and setters for feed classes
Diffstat (limited to 'src/de/podfetcher/feed/FeedCategory.java')
-rw-r--r--src/de/podfetcher/feed/FeedCategory.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/de/podfetcher/feed/FeedCategory.java b/src/de/podfetcher/feed/FeedCategory.java
index d5fd028ab..fce4b1231 100644
--- a/src/de/podfetcher/feed/FeedCategory.java
+++ b/src/de/podfetcher/feed/FeedCategory.java
@@ -1,12 +1,20 @@
package de.podfetcher.feed;
public class FeedCategory extends FeedComponent{
- public String name;
+ protected String name;
public FeedCategory(String name) {
super();
this.name = name;
}
+
+ public String getName() {
+ return name;
+ }
+
+
+
+
}