class Cmpi::CMPIData

CMPIData

Public Instance Methods

method_missing(name, *args) click to toggle source
# File ruby/cmpi.rb, line 459
    def method_missing name, *args
#      STDERR.puts "CMPIData.%s? %0x" % [name, type]
      case type
      when Cmpi.instance
        value.inst.send(name,*args)
      when Cmpi.ref
        value.ref.send(name,*args)
      end
    end