Class: OoxmlParser::Timing

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/slide/timing.rb

Overview

Class for parsing ‘timing`

Instance Attribute Summary collapse

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

#==, add_to_xmls_stack, copy_file_and_rename_to_zip, current_xml, dir, encrypted_file?, get_link_from_rels, unzip_file, #with_data?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

#initialize(parent: nil) ⇒ Timing

Returns a new instance of Timing.



7
8
9
10
11
12
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/slide/timing.rb', line 7

def initialize(parent: nil)
  @time_node_list = []
  @build_list = []
  @extension_list = []
  @parent = parent
end

Instance Attribute Details

#build_listObject

Returns the value of attribute build_list.



5
6
7
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/slide/timing.rb', line 5

def build_list
  @build_list
end

#extension_listObject

Returns the value of attribute extension_list.



5
6
7
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/slide/timing.rb', line 5

def extension_list
  @extension_list
end

#time_node_listObject

Returns the value of attribute time_node_list.



5
6
7
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/slide/timing.rb', line 5

def time_node_list
  @time_node_list
end

Instance Method Details

#parse(node) ⇒ Timing

Parse Timing object

Parameters:

  • node (Nokogiri::XML:Element)

    node to parse

Returns:

  • (Timing)

    result of parsing



17
18
19
20
21
22
23
24
25
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/slide/timing.rb', line 17

def parse(node)
  node.xpath('*').each do |node_child|
    case node_child.name
    when 'tnLst'
      @time_node_list = TimeNode.parse_list(node_child)
    end
  end
  self
end