DBus::IntrospectXMLParser::AbstractXML
# File lib/dbus/xml.rb, line 84 def initialize(xml) @doc = REXML::Document.new(xml) end
# File lib/dbus/xml.rb, line 87 def each(path, &block) @doc.elements.each(path) { |node| block.call REXMLNode.new(node) } end