// Iterate over the children, ignoring their parent.
VisitorChildrenIterator childrenSerialiser =
new VisitorChildrenIterator(visitor);
try {
if (delement.hasChildren()) {
delement.forEachChild(childrenSerialiser);
}
} catch (WBDOMException e) {
throw new DissectionException(e);
}
}