summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/podfetcher/syndication/namespace/atom/NSAtom.java')
-rw-r--r--src/de/podfetcher/syndication/namespace/atom/NSAtom.java16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/de/podfetcher/syndication/namespace/atom/NSAtom.java b/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
index c55e9fcd6..803228cc5 100644
--- a/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
+++ b/src/de/podfetcher/syndication/namespace/atom/NSAtom.java
@@ -3,16 +3,20 @@ package de.podfetcher.syndication.namespace.atom;
import org.xml.sax.Attributes;
import de.podfetcher.feed.Feed;
+import de.podfetcher.syndication.handler.HandlerState;
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, Feed feed, Attributes attributes) {
+ public void handleElement(String localName, HandlerState state, Attributes attributes) {
if (localName.equals(TITLE)) {
}
@@ -25,14 +29,4 @@ public class NSAtom extends Namespace {
}
- @Override
- public String getNsTag() {
- return "atom";
- }
-
- @Override
- public String getNsURI() {
- return "http://www.w3.org/2005/Atom";
- }
-
}