Package org.apache.uima.internal.util
Class XmlElementNameAndContents
- java.lang.Object
-
- org.apache.uima.internal.util.XmlElementNameAndContents
-
public class XmlElementNameAndContents extends 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 Summary
Fields Modifier and Type Field Description List<XmlAttribute>
attributes
List of XmlAttribute objects each holding name and value of an attribute.String
contents
XmlElementName
name
-
Constructor Summary
Constructors Constructor Description XmlElementNameAndContents(XmlElementName name, String contents)
XmlElementNameAndContents(XmlElementName name, String contents, List<XmlAttribute> attributes)
-
-
-
Field Detail
-
name
public XmlElementName name
-
attributes
public List<XmlAttribute> attributes
List of XmlAttribute objects each holding name and value of an attribute.
-
contents
public String contents
-
-
Constructor Detail
-
XmlElementNameAndContents
public XmlElementNameAndContents(XmlElementName name, String contents)
-
XmlElementNameAndContents
public XmlElementNameAndContents(XmlElementName name, String contents, List<XmlAttribute> attributes)
-
-