blob: 0b7e914ea8c05b47cceb209ec81ccbc99088161f [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.libg.sax;
2
Stuart McCulloch4482c702012-06-15 13:27:53 +00003import org.xml.sax.*;
Stuart McCullochf3173222012-06-07 21:57:32 +00004
5public class SAXElement {
6
Stuart McCulloch4482c702012-06-15 13:27:53 +00007 private final String uri;
8 private final String localName;
9 private final String qName;
10 private final Attributes atts;
Stuart McCullochf3173222012-06-07 21:57:32 +000011
Stuart McCulloch4482c702012-06-15 13:27:53 +000012 public SAXElement(String uri, String localName, String qName, Attributes atts) {
Stuart McCullochf3173222012-06-07 21:57:32 +000013 this.uri = uri;
14 this.localName = localName;
15 this.qName = qName;
16 this.atts = atts;
17 }
18
19 public String getUri() {
20 return uri;
21 }
22
23 public String getLocalName() {
24 return localName;
25 }
26
27 public String getqName() {
28 return qName;
29 }
30
31 public Attributes getAtts() {
32 return atts;
33 }
34
35}