Class AbstractEntity

    • Field Detail

      • nodeName

        protected java.lang.String nodeName
        The node name.
      • publicId

        protected java.lang.String publicId
        The public id.
      • systemId

        protected java.lang.String systemId
        The system id.
    • Constructor Detail

      • AbstractEntity

        public AbstractEntity()
    • Method Detail

      • getNodeType

        public short getNodeType()
        DOM: Implements Node.getNodeType().
        Specified by:
        getNodeType in interface org.w3c.dom.Node
        Returns:
        Node.ENTITY_NODE
      • getNodeName

        public java.lang.String getNodeName()
        DOM: Implements Node.getNodeName().
        Specified by:
        getNodeName in interface org.w3c.dom.Node
        Returns:
        nodeName.
      • getPublicId

        public java.lang.String getPublicId()
        DOM: Implements Entity.getPublicId().
        Specified by:
        getPublicId in interface org.w3c.dom.Entity
        Returns:
        publicId.
      • setPublicId

        public void setPublicId​(java.lang.String id)
        Sets the public id.
      • getSystemId

        public java.lang.String getSystemId()
        DOM: Implements Entity.getSystemId().
        Specified by:
        getSystemId in interface org.w3c.dom.Entity
        Returns:
        systemId.
      • setSystemId

        public void setSystemId​(java.lang.String id)
        Sets the system id.
      • getNotationName

        public java.lang.String getNotationName()
        DOM: Implements Entity.getNotationName().
        Specified by:
        getNotationName in interface org.w3c.dom.Entity
        Returns:
        getNodeName().
      • setNotationName

        public void setNotationName​(java.lang.String name)
        Sets the notation name.
      • getInputEncoding

        public java.lang.String getInputEncoding()
        DOM: Implements Entity.getInputEncoding().
        Specified by:
        getInputEncoding in interface org.w3c.dom.Entity
      • getXmlEncoding

        public java.lang.String getXmlEncoding()
        DOM: Implements Entity.getXmlEncoding().
        Specified by:
        getXmlEncoding in interface org.w3c.dom.Entity
      • getXmlVersion

        public java.lang.String getXmlVersion()
        DOM: Implements Entity.getXmlVersion().
        Specified by:
        getXmlVersion in interface org.w3c.dom.Entity
      • export

        protected org.w3c.dom.Node export​(org.w3c.dom.Node n,
                                          AbstractDocument d)
        Exports this node to the given document.
        Overrides:
        export in class AbstractNode
      • copyInto

        protected org.w3c.dom.Node copyInto​(org.w3c.dom.Node n)
        Copy the fields of the current node into the given node.
        Overrides:
        copyInto in class AbstractNode
        Parameters:
        n - a node of the type of this.
      • deepCopyInto

        protected org.w3c.dom.Node deepCopyInto​(org.w3c.dom.Node n)
        Deeply copy the fields of the current node into the given node.
        Overrides:
        deepCopyInto in class AbstractParentNode
        Parameters:
        n - a node of the type of this.
      • checkChildType

        protected void checkChildType​(org.w3c.dom.Node n,
                                      boolean replace)
        Checks the validity of a node to be inserted.
        Overrides:
        checkChildType in class AbstractNode