1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
## -*- 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<Text
=begin
=== Class Methods
--- CDATASection.new(text = nil)
creates a new CDATASection.
=end
def initialize(text = nil)
super(text)
raise "parameter error" if !text
end
=begin
=== Methods
--- CDATASection#nodeType
[DOM]
returns the nodeType.
=end
## [DOM]
def nodeType
CDATA_SECTION_NODE
end
=begin
--- CDATASection#nodeName
[DOM]
returns the nodeName.
=end
## [DOM]
def nodeName
"#cdata-section"
end
=begin
--- CDATASection#to_s
returns the string representation of the CDATASection.
=end
def to_s
"<![CDATA[#{@value}]]>"
end
=begin
--- CDATASection#dump(depth = 0)
dumps the CDATASection.
=end
def dump(depth = 0)
print ' ' * depth * 2
print "<![CDATA[#{@value.inspect}]]>\n"
end
end
end
end
|