Home | History | Annotate | Download | only in sax

Lines Matching defs:localName

33     final String localName;
46 Element(Element parent, String uri, String localName, int depth) {
49 this.localName = localName;
57 public Element getChild(String localName) {
58 return getChild("", localName);
64 public Element getChild(String uri, String localName) {
74 return children.getOrCreate(this, uri, localName);
83 public Element requireChild(String localName) {
84 return requireChild("", localName);
92 public Element requireChild(String uri, String localName) {
93 Element child = getChild(uri, localName);
166 return toString(uri, localName);
169 static String toString(String uri, String localName) {
170 return "'" + (uri.equals("") ? localName : uri + ":" + localName) + "'";