class DBus::IntrospectXMLParser::AbstractXML::Node
Public Class Methods
new(node)
click to toggle source
# File lib/dbus/xml.rb 55 def initialize(node) 56 @node = node 57 end
Public Instance Methods
[](key)
click to toggle source
required methods returns node attribute value
# File lib/dbus/xml.rb 61 def [](key); end
each(xpath)
click to toggle source
yields child nodes which match xpath of type AbstractXML::Node
# File lib/dbus/xml.rb 64 def each(xpath); end