Package com.topologi.diffx.xml
Class XMLWriterNSImpl.Element
java.lang.Object
com.topologi.diffx.xml.XMLWriterNSImpl.Element
- Enclosing class:
- XMLWriterNSImpl
A light object to keep track of the elements
- Version:
- 31 August 2004
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanIndicates whether the element has children.private final List<XMLWriterNSImpl.PrefixMapping>A list of prefix mappings for this element.private final StringThe fully qualified name of the element. -
Constructor Summary
ConstructorsConstructorDescriptionElement(String qName, boolean hasChildren, List<XMLWriterNSImpl.PrefixMapping> mappings) Creates a new Element. -
Method Summary
-
Field Details
-
qName
The fully qualified name of the element. -
hasChildren
private final boolean hasChildrenIndicates whether the element has children. -
mappings
A list of prefix mappings for this element.Can be
null.
-
-
Constructor Details
-
Element
Creates a new Element.- Parameters:
qName- The qualified name of the element.hasChildren- Whether the element has children.mappings- The list of prefix mapping if any.
-