Lines Matching refs:Element
26 * The root XML element. The entry point for this API. Not safe for concurrent
47 * Element entry = root.getChild(ATOM_NAMESPACE, "entry");
66 public class RootElement extends Element {
71 * Constructs a new root element with the given name.
81 * Constructs a new root element with the given name. Uses an empty string
101 Element current = null;
115 // This is the root element.
123 + " within text element named " + current + ".",
127 // If we're one level below the current element.
132 Element child = children.get(uri, localName);
142 Element root = RootElement.this;
145 throw new BadXmlException("Root element name does"
147 + Element.toString(uri, localName), locator);
153 void start(Element e, Attributes attributes) {
154 // Push element onto the stack.
180 Element current = this.current;
182 // If we've ended the current element...
186 // Invoke end element listener.
191 // Invoke end text element listener.
200 // Pop element off the stack.