summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/feed/SearchResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/danoeh/antennapod/feed/SearchResult.java')
-rw-r--r--src/de/danoeh/antennapod/feed/SearchResult.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/de/danoeh/antennapod/feed/SearchResult.java b/src/de/danoeh/antennapod/feed/SearchResult.java
deleted file mode 100644
index 1cba389ec..000000000
--- a/src/de/danoeh/antennapod/feed/SearchResult.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package de.danoeh.antennapod.feed;
-
-public class SearchResult {
- private FeedComponent component;
- /** Additional information (e.g. where it was found) */
- private String subtitle;
- /** Higher value means more importance */
- private int value;
-
- public SearchResult(FeedComponent component, int value, String subtitle) {
- super();
- this.component = component;
- this.value = value;
- this.subtitle = subtitle;
- }
-
- public FeedComponent getComponent() {
- return component;
- }
-
- public String getSubtitle() {
- return subtitle;
- }
-
- public void setSubtitle(String subtitle) {
- this.subtitle = subtitle;
- }
-
- public int getValue() {
- return value;
- }
-
-
-}