summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed/FeedCategory.java
diff options
context:
space:
mode:
authorDaniel Oeh <daniel@daniel-pc.(none)>2011-12-23 19:22:06 +0100
committerDaniel Oeh <daniel@daniel-pc.(none)>2011-12-23 19:22:06 +0100
commitc9283f09dced6f156e13675ef4c13ebeb20cb9e5 (patch)
tree833961a4fd03b94086223dba9f658cb2841cbe77 /src/de/podfetcher/feed/FeedCategory.java
downloadAntennaPod-c9283f09dced6f156e13675ef4c13ebeb20cb9e5.zip
Initial Commit
Diffstat (limited to 'src/de/podfetcher/feed/FeedCategory.java')
-rw-r--r--src/de/podfetcher/feed/FeedCategory.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/de/podfetcher/feed/FeedCategory.java b/src/de/podfetcher/feed/FeedCategory.java
new file mode 100644
index 000000000..d5fd028ab
--- /dev/null
+++ b/src/de/podfetcher/feed/FeedCategory.java
@@ -0,0 +1,12 @@
+package de.podfetcher.feed;
+
+public class FeedCategory extends FeedComponent{
+ public String name;
+
+ public FeedCategory(String name) {
+ super();
+ this.name = name;
+ }
+
+
+}