class DBus::IntrospectXMLParser::REXMLParser::REXMLNode

Public Instance Methods

[](key) click to toggle source
# File lib/dbus/xml.rb, line 85
def [](key)
  @node.attributes[key]
end
each(path, &block) click to toggle source
# File lib/dbus/xml.rb, line 89
def each(path, &block)
  @node.elements.each(path) { |node| block.call REXMLNode.new(node) }
end