class DBus::IntrospectXMLParser::REXMLParser::REXMLNode
Public Instance Methods
[](key)
click to toggle source
# File lib/dbus/xml.rb, line 91 def [](key) @node.attributes[key] end
each(path, &block)
click to toggle source
# File lib/dbus/xml.rb, line 95 def each(path, &block) @node.elements.each(path) { |node| block.call REXMLNode.new(node) } end