Class XML::DOM::DocumentFragment
In: lib/xml/dom2/documentfragment.rb
lib/xml/dom/core.rb
Parent: Node

Methods

_checkNode   _checkNode   new   new   nodeName   nodeName   nodeType   nodeType   parentNode=  

Public Class methods

Public Instance methods

DocumentFragment should not have the parent node.

    def parentNode=(p)
      @children.each do |child|
        child.parentNode = p
      end if @children
    end

DocumentFragment should not have the parent node.

[Validate]