Class: RubyXL::OOXMLContainerObject

Inherits:
Array
  • Object
show all
Includes:
OOXMLObjectInstanceMethods
Defined in:
lib/rubyXL/objects/ooxml_object.rb

Overview

Parent class for OOXML conainer objects (for example, <fonts><font>...</font><font>...</font></fonts> that obscures the top-level container, allowing direct access to the contents as Array.

Instance Attribute Summary

Attributes included from OOXMLObjectInstanceMethods

#local_namespaces

Class Method Summary collapse

Instance Method Summary collapse

Methods included from OOXMLObjectInstanceMethods

#==, included, #index_in_collection, #write_xml

Constructor Details

#initialize(params = {}) ⇒ OOXMLContainerObject

Returns a new instance of OOXMLContainerObject.



378
379
380
381
382
# File 'lib/rubyXL/objects/ooxml_object.rb', line 378

def initialize(params = {})
  array_content = params.delete(:_)
  super
  array_content.each_with_index { |v, i| self[i] = v } if array_content
end

Class Method Details

.define_count_attributeObject



410
411
412
413
# File 'lib/rubyXL/objects/ooxml_object.rb', line 410

def define_count_attribute
  # Count will be inherited from Array. so no need to define it explicitly.
  define_attribute(:count, :uint, :required => true, :computed => true)
end

Instance Method Details

#before_write_xmlObject



399
400
401
# File 'lib/rubyXL/objects/ooxml_object.rb', line 399

def before_write_xml
  true
end

#inspectObject



403
404
405
406
407
# File 'lib/rubyXL/objects/ooxml_object.rb', line 403

def inspect
  vars = [ super ]
  vars = self.instance_variables.each { |v| vars << "#{v}=#{instance_variable_get(v).inspect}" }
  "<#{self.class}: #{super} #{vars.join(", ")}>"
end