Object
Class that generates and sets up a proxy object based on introspection data.
Investigates the sub-nodes of the proxy object po based on the introspection XML data xml and sets them up recursively.
# File lib/dbus/introspect.rb, line 533 def ProxyObjectFactory.introspect_into(po, xml) intfs, po.subnodes = IntrospectXMLParser.new(xml).parse intfs.each do |i| poi = ProxyObjectInterface.new(po, i.name) i.methods.each_value { |m| poi.define(m) } i.signals.each_value { |s| poi.define(s) } po[i.name] = poi end po.introspected = true end
Generated with the Darkfish Rdoc Generator 2.