Class: WBEM::VALUE_ARRAY

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(values) ⇒ VALUE_ARRAY

<!ELEMENT VALUE.ARRAY (VALUE*)>

"""


263
264
265
266
# File 'lib/wbem/cim_xml.rb', line 263

def initialize(values)
    super("VALUE.ARRAY")
    self.add_elements(values)
end