Home | History | Annotate | Download | only in sax

Lines Matching full:root

26  * The root XML element. The entry point for this API. Not safe for concurrent
46 * RootElement root = new RootElement(ATOM_NAMESPACE, "feed");
47 * Element entry = root.getChild(ATOM_NAMESPACE, "entry");
56 * reader.setContentHandler(root.getContentHandler());
71 * Constructs a new root element with the given name.
81 * Constructs a new root element with the given name. Uses an empty string
115 // This is the root element.
142 Element root = RootElement.this;
143 if (root.uri.compareTo(uri) != 0
144 || root.localName.compareTo(localName) != 0) {
145 throw new BadXmlException("Root element name does"
146 + " not match. Expected: " + root + ", Got: "
150 start(root, attributes);