class XMLScan::XPath::DOM::TextNodeAdapter

Public Instance Methods

node_type() click to toggle source
# File lib/xml/dom2/xpath.rb, line 70
def node_type
  :text
end
string_value() click to toggle source
# File lib/xml/dom2/xpath.rb, line 74
def string_value
  @node.nodeValue
end