summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/syndication/namespace/NSElement.java
blob: 6b62def7711204a044aa26538ffdc63eec72633c (plain)
1
2
3
4
5
6
7
8
9
10
11
package de.podfetcher.syndication.namespace;

import org.xml.sax.Attributes;

import de.podfetcher.feed.Feed;

/** Defines a XML Element of a specific namespace */
public abstract class NSElement {
	/** Called by its namespace if the processing of the element gets more complex */
	public abstract void handleElement(String localName, Feed feed, Attributes attributes);
}