## -*- Ruby -*- ## XML::DOM ## 1998-2001 by yoshidam ## require 'xml/dom2/node' module XML module DOM =begin == Class XML::DOM::ProcessingInstruction === superclass Node =end class ProcessingInstruction\n" end =begin --- ProcessingInstruction#cloneNode(deep = true) [DOM] returns the copy of the ProcessingInstruction. =end ## [DOM] def cloneNode(deep = true) super(deep, @target, @data) end end end end