summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/syndication/namespace/SyndElement.java
blob: 187312c9e44a865d08159002ae7273f7a6df2ad7 (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.danoeh.antennapod.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;
	}
	
	
}