Methods in org.jdom that throw NoSuchElementException |
Element |
Document.getRootElement()
This will return the root Element
for this Document , or null if there is none. |
Element |
Element.getChild(java.lang.String name)
This will return a List of all the XML
elements nested directly (one level deep) within
this Element whose names match the name
specified, each in Element
form. |
Element |
Element.getChild(java.lang.String prefix,
java.lang.String name)
This will return the child Element s for the
specified element name on this Element . |