List of usage examples for org.dom4j Element node
Node node(int index) throws IndexOutOfBoundsException;
Node
at the specified index position. From source file:wowhead_itemreader.WoWHeadData.java
License:Open Source License
private void parseXML(Element n) throws Exception { addToEngine(n);/*from w w w . j a v a 2 s .c o m*/ for (int i = 0; i < n.nodeCount(); i++) { Node node = n.node(i); if (node instanceof Element) { parseXML((Element) node); } } }