List of usage examples for org.dom4j Node getDocument
Document getDocument();
getDocument
returns the Document
that this Node
is part of if this node supports the parent relationship.
From source file:org.withinsea.izayoi.cortile.core.compile.dom.DOMCompiler.java
License:Mozilla Public License
protected boolean isDetached(Node node) { return (node.getParent() == null && node.getDocument() == null); }