summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/syndication/namespace/atom
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-09 12:34:18 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-09 12:34:18 +0200
commita0237d60358196c36b95e7d5c1b7d2d09f1ec022 (patch)
tree13da0f8d56355323e298c8e2403afa8d6ca9ee2e /src/de/podfetcher/syndication/namespace/atom
parentb19afaa82ca20970e52093ff4c17e290f02cd923 (diff)
downloadAntennaPod-a0237d60358196c36b95e7d5c1b7d2d09f1ec022.zip
Converted RSSHandler into RSS 2.0 Namespace
Diffstat (limited to 'src/de/podfetcher/syndication/namespace/atom')
-rw-r--r--src/de/podfetcher/syndication/namespace/atom/NSAtom.java19
1 files changed, 12 insertions, 7 deletions
diff --git a/src/de/podfetcher/syndication/namespace/atom/NSAtom.java b/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
index 803228cc5..7ca23572e 100644
--- a/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
+++ b/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
@@ -9,24 +9,29 @@ import de.podfetcher.syndication.namespace.Namespace;
public class NSAtom extends Namespace {
public static final String NSTAG = "atom";
public static final String NSURI = "http://www.w3.org/2005/Atom";
-
+
private static final String TITLE = "title";
private static final String LINK = "link";
private static final String UPDATED = "updated";
private static final String AUTHOR = "author";
-
+
@Override
- public void handleElement(String localName, HandlerState state, Attributes attributes) {
+ public void handleElementStart(String localName, HandlerState state,
+ Attributes attributes) {
if (localName.equals(TITLE)) {
-
+
}
+ }
+
+ @Override
+ public void handleCharacters(HandlerState state, char[] ch, int start,
+ int length) {
}
@Override
- public void handleCharacters(String localName, Feed feed, char[] ch,
- int start, int length) {
-
+ public void handleElementEnd(String localName, HandlerState state) {
+ // TODO Auto-generated method stub
}
}