Sha256: 4c29b01ee66a218a3ddb62e3ccb397f086cb80f3bf2a3777ee5ed10242167970

Contents?: true

Size: 1.03 KB

Versions: 48

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

module OoxmlParser
  # Class for parsing `cmAuthor` tag
  class CommentAuthor < OOXMLDocumentObject
    # @return [Integer] Comment Author ID
    attr_reader :id
    # @return [String] Author Name
    attr_reader :name
    # @return [String] Author Initials
    attr_reader :initials
    # @return [Integer] Index of Comment Author's last comment
    attr_reader :last_index
    # @return [Integer] Comment Author Color Index
    attr_reader :color_index

    # Parse CommentAuthor object
    # @param node [Nokogiri::XML:Element] node to parse
    # @return [CommentAuthor] result of parsing
    def parse(node)
      node.attributes.each do |key, value|
        case key
        when 'id'
          @id = value.value.to_i
        when 'name'
          @name = value.value.to_s
        when 'initials'
          @initials = value.value.to_s
        when 'lastIdx'
          @last_index = value.value.to_i
        when 'clrIdx'
          @color_index = value.value.to_i
        end
      end
      self
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
ooxml_parser-0.37.1 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.37.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.36.1 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.36.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.35.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.34.2 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.34.1 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.34.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.33.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.32.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.31.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.30.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.29.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.28.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.27.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.26.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.25.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.24.0 lib/ooxml_parser/pptx_parser/presentation/comment_authors/comment_author.rb
ooxml_parser-0.23.0 lib/ooxml_parser/pptx_parser/pptx_data/presentation/comment_authors/comment_author.rb
ooxml_parser-0.22.0 lib/ooxml_parser/pptx_parser/pptx_data/presentation/comment_authors/comment_author.rb