Class: OoxmlParser::Timing
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::Timing
- Defined in:
- lib/ooxml_parser/pptx_parser/presentation/slide/slide/timing.rb
Overview
Class for parsing ‘timing`
Instance Attribute Summary collapse
-
#build_list ⇒ Object
Returns the value of attribute build_list.
-
#extension_list ⇒ Object
Returns the value of attribute extension_list.
-
#time_node_list ⇒ Object
Returns the value of attribute time_node_list.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#initialize(parent: nil) ⇒ Timing
constructor
A new instance of Timing.
-
#parse(node) ⇒ Timing
Parse Timing object.
Methods inherited from OOXMLDocumentObject
#==, #boolean_attribute_value, #parse_xml, #with_data?
Methods included from OoxmlObjectAttributeHelper
#attribute_enabled?, #option_enabled?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
#initialize(parent: nil) ⇒ Timing
Returns a new instance of Timing.
9 10 11 12 13 14 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/slide/timing.rb', line 9 def initialize(parent: nil) @time_node_list = [] @build_list = [] @extension_list = [] super end |
Instance Attribute Details
#build_list ⇒ Object
Returns the value of attribute build_list.
7 8 9 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/slide/timing.rb', line 7 def build_list @build_list end |
#extension_list ⇒ Object
Returns the value of attribute extension_list.
7 8 9 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/slide/timing.rb', line 7 def extension_list @extension_list end |
#time_node_list ⇒ Object
Returns the value of attribute time_node_list.
7 8 9 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/slide/timing.rb', line 7 def time_node_list @time_node_list end |
Instance Method Details
#parse(node) ⇒ Timing
Parse Timing object
19 20 21 22 23 24 25 26 27 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/slide/timing.rb', line 19 def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'tnLst' @time_node_list = TimeNodeList.new(parent: self).parse(node_child).elements end end self end |