Lines Matching refs:child
25 * An XML element. Provides access to child elements and hooks to listen
54 * Gets the child element with the given name. Uses an empty string as the
62 * Gets the child element with the given name.
78 * Gets the child element with the given name. Uses an empty string as the
80 * time if the specified child is missing. This helps you ensure that your
88 * Gets the child element with the given name. We will throw a
89 * {@link org.xml.sax.SAXException} at parsing time if the specified child
93 Element child = getChild(uri, localName);
97 requiredChilden.add(child);
99 if (!requiredChilden.contains(child)) {
100 requiredChilden.add(child);
104 return child;
186 * Throws an exception if a required child was not present.
192 Element child = requiredChildren.get(i);
193 if (!child.visited) {
196 + " child element named "
197 + child + ".", locator);