Class: WBEM::LOCALINSTANCEPATH

Inherits:
CIMElement
  • Object
show all
Defined in:
lib/wbem/cim_xml.rb

Instance Method Summary collapse

Methods inherited from CIMElement

#add_elements, #add_optional_attribute, #add_optional_element, #setName, #toxml

Constructor Details

#initialize(localpath, instancename) ⇒ LOCALINSTANCEPATH

<!ELEMENT LOCALINSTANCEPATH (LOCALNAMESPACEPATH,INSTANCENAME)>

"""


527
528
529
530
531
# File 'lib/wbem/cim_xml.rb', line 527

def initialize(localpath, instancename)
    super("LOCALINSTANCEPATH")
    self.add_element(localpath)
    self.add_element(instancename)
end