java.lang.Object
org.tquadrat.foundation.xml.builder.internal.XMLDocumentImpl
All Implemented Interfaces:
Document<XMLElement>, XMLDocument

@ClassVersion(sourceVersion="$Id: XMLDocumentImpl.java 1071 2023-09-30 01:49:32Z tquadrat $") @API(status=INTERNAL, since="0.0.5") public final class XMLDocumentImpl extends Object implements XMLDocument
The implementation for the interface XMLDocument.

It allows document comments and processing instructions to be added.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: XMLDocumentImpl.java 1071 2023-09-30 01:49:32Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.xml.builder.internal.XMLDocumentImpl"

UML Diagram for "org.tquadrat.foundation.xml.builder.internal.XMLDocumentImpl"

UML Diagram for "org.tquadrat.foundation.xml.builder.internal.XMLDocumentImpl"
  • Field Details

  • Constructor Details

    • XMLDocumentImpl

      public XMLDocumentImpl()
      Creates a new XMLDocumentImpl instance.

      The resulting document will do not have an explicit doc type, the root element will be <root>. The encoding is defined as UTF-8.

      Basically, this document would have the DTD
      <!ELEMENT root ANY>
      .
    • XMLDocumentImpl

      public XMLDocumentImpl(String rootElementName)
      Creates a new XMLDocumentImpl instance.

      The resulting document will do not have an explicit doc type, the encoding is defined as UTF-8.

      The given root element name is validated using the method that is provided by XMLBuilderUtils.getElementNameValidator().
      Parameters:
      rootElementName - The name of the root element for this document.
    • XMLDocumentImpl

      public XMLDocumentImpl(XMLElement rootElement, boolean standalone)
      Creates a new XMLDocumentImpl instance.

      The resulting document will do not have an explicit doc type, the encoding is defined as UTF-8.
      Parameters:
      rootElement - The root element for this document.
      standalone - true if the XML document is standalone, false if not.
    • XMLDocumentImpl

      public XMLDocumentImpl(String rootElementName, Charset encoding, String name, URI uri)
      Creates a new XMLDocumentImpl instance.

      The given root element name is validated using the method that is provided by XMLBuilderUtils.getElementNameValidator().
      Parameters:
      rootElementName - The name for the root element for this document.
      encoding - The encoding for the new XML document.
      name - The name for the DTD.
      uri - The URI for the DTD.
    • XMLDocumentImpl

      public XMLDocumentImpl(XMLElement rootElement, Charset encoding, String name, URI uri)
      Creates a new XMLDocumentImpl instance.
      Parameters:
      rootElement - The root element for this document.
      encoding - The encoding for the new XML document.
      name - The name for the DTD.
      uri - The URI for the DTD.
    • XMLDocumentImpl

      public XMLDocumentImpl(String rootElementName, Charset encoding, URI uri)
      Creates a new XMLDocumentImpl instance.

      The given element name is validated using the method that is provided by XMLBuilderUtils.getElementNameValidator().
      Parameters:
      rootElementName - The name of the root element for this document.
      encoding - The encoding for the new XML document.
      uri - The URI for the DTD.
    • XMLDocumentImpl

      public XMLDocumentImpl(XMLElement rootElement, Charset encoding, URI uri)
      Creates a new XMLDocumentImpl instance.
      Parameters:
      rootElement - The root element for this document.
      encoding - The encoding for the new XML document.
      uri - The URI for the DTD.
  • Method Details