All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.libg.sax.SAXElement Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.libg.sax;

import org.xml.sax.Attributes;

public class SAXElement {

	private final String		uri;
	private final String		localName;
	private final String		qName;
	private final Attributes	atts;

	public SAXElement(String uri, String localName, String qName, Attributes atts) {
		this.uri = uri;
		this.localName = localName;
		this.qName = qName;
		this.atts = atts;
	}

	public String getUri() {
		return uri;
	}

	public String getLocalName() {
		return localName;
	}

	public String getqName() {
		return qName;
	}

	public Attributes getAtts() {
		return atts;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy