Writes the opening tag of an {@link Element}, including its {@link Attribute}s but without its content.
Element
104105106107108109110111112113114
if ( node instanceof Element ) { Element element = (Element) node; SAXWriter saxWriter = new SAXWriter(output, output); saxWriter.writeOpen(element); invokeBody(output); saxWriter.writeClose(element); } else { invokeBody(output);