Class XmlElementNameAndContents


  • public class XmlElementNameAndContents
    extends java.lang.Object
    Data structure used to encapsulate an XML element name (including Namespace URI, local name, and the qname) as well as its attributes and character content.
    • Field Detail

      • attributes

        public final java.util.List<XmlAttribute> attributes
        List of XmlAttribute objects each holding name and value of an attribute.
      • contents

        public final java.lang.String contents
    • Constructor Detail

      • XmlElementNameAndContents

        public XmlElementNameAndContents​(XmlElementName name,
                                         java.lang.String contents)
      • XmlElementNameAndContents

        public XmlElementNameAndContents​(XmlElementName name,
                                         java.lang.String contents,
                                         java.util.List<XmlAttribute> attributes)