aQute.libg.sax.SAXElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aQute.libg Show documentation
Show all versions of aQute.libg Show documentation
A library to be statically linked. Contains many small utilities. This bundle should not be installed in a framework, it is compile only.
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 - 2025 Weber Informatics LLC | Privacy Policy