class DBus::IntrospectXMLParser::REXMLParser::REXMLNode

Public Instance Methods

[](key) click to toggle source
   # File lib/dbus/xml.rb
91 def [](key)
92   @node.attributes[key]
93 end
each(path, &block) click to toggle source
   # File lib/dbus/xml.rb
95 def each(path, &block)
96   @node.elements.each(path) { |node| block.call REXMLNode.new(node) }
97 end