## -*- Ruby -*- ## XML::DOM ## 1998-2001 by yoshidam ## require 'xml/dom2/text' module XML module DOM =begin == Class XML::DOM::CDATASection === superclass Text =end class CDATASection" end =begin --- CDATASection#dump(depth = 0) dumps the CDATASection. =end def dump(depth = 0) print ' ' * depth * 2 print "\n" end end end end