class XMLScan::XPath::DOM::PINodeAdapter

Public Instance Methods

name_localpart() click to toggle source
# File lib/xml/dom2/xpath.rb, line 96
def name_localpart
  @node.nodeName
end
node_type() click to toggle source
# File lib/xml/dom2/xpath.rb, line 92
def node_type
  :processing_instruction
end
string_value() click to toggle source
# File lib/xml/dom2/xpath.rb, line 100
def string_value
  @node.nodeValue
end