summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/syndication/namespace/Namespace.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/podfetcher/syndication/namespace/Namespace.java')
-rw-r--r--src/de/podfetcher/syndication/namespace/Namespace.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/de/podfetcher/syndication/namespace/Namespace.java b/src/de/podfetcher/syndication/namespace/Namespace.java
index 152c53652..3709a35c5 100644
--- a/src/de/podfetcher/syndication/namespace/Namespace.java
+++ b/src/de/podfetcher/syndication/namespace/Namespace.java
@@ -3,16 +3,17 @@ package de.podfetcher.syndication.namespace;
import org.xml.sax.Attributes;
import de.podfetcher.feed.Feed;
+import de.podfetcher.syndication.handler.HandlerState;
public abstract class Namespace {
+ public static final String NSTAG = null;
+ public static final String NSURI = null;
/** Called by a Feedhandler when in startElement and it detects a namespace element */
- public abstract void handleElement(String localName, Feed feed, Attributes attributes);
+ public abstract void handleElement(String localName, HandlerState state, Attributes attributes);
/** Called by a Feedhandler when in characters and it detects a namespace element */
public abstract void handleCharacters(String localName, Feed feed, char ch[], int start, int length);
- public abstract String getNsTag();
- public abstract String getNsURI();
}