Class XmlDeclaration

java.lang.Object
jodd.lagarto.dom.Node
jodd.lagarto.dom.XmlDeclaration
All Implemented Interfaces:
Cloneable

public class XmlDeclaration extends Node
XML declaration node.
  • Field Details

    • version

      protected String version
    • encoding

      protected String encoding
    • standalone

      protected String standalone
  • Constructor Details

  • Method Details

    • getVersion

      public String getVersion()
    • getEncoding

      public String getEncoding()
    • getStandalone

      public String getStandalone()
    • clone

      public XmlDeclaration clone()
      Specified by:
      clone in class Node
    • visitNode

      protected void visitNode(NodeVisitor nodeVisitor)
      Description copied from class: Node
      Visits single node. Implementations just needs to call the correct visitor callback function.
      Specified by:
      visitNode in class Node