summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/syndication/namespace/SyndElement.java
blob: 2dd4e7062691029eafaa3ed7871f80d40ea9a683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package de.podfetcher.syndication.namespace;

/** Defines a XML Element that is pushed on the tagstack */
public class SyndElement {
	protected String name;
	protected Namespace namespace;
	
	public SyndElement(String name, Namespace namespace) {
		this.name = name;
		this.namespace = namespace;
	}
	
	public Namespace getNamespace() {
		return namespace;
	}

	public String getName() {
		return name;
	}
	
	
}