Class: CamtParser::MessagePagination

Inherits:
Object
  • Object
show all
Defined in:
lib/camt_parser/general/group_header.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(xml_data) ⇒ MessagePagination

Returns a new instance of MessagePagination.



26
27
28
29
30
# File 'lib/camt_parser/general/group_header.rb', line 26

def initialize(xml_data)
  @xml_data            = xml_data
  @page_number         = xml_data.xpath('PgNb/text()').text.to_i
  @last_page_indicator = xml_data.xpath('LastPgInd/text()').text == 'true'
end

Instance Attribute Details

#page_numberObject (readonly)

Returns the value of attribute page_number.



23
24
25
# File 'lib/camt_parser/general/group_header.rb', line 23

def page_number
  @page_number
end

#xml_dataObject (readonly)

Returns the value of attribute xml_data.



23
24
25
# File 'lib/camt_parser/general/group_header.rb', line 23

def xml_data
  @xml_data
end

Instance Method Details

#last_page?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/camt_parser/general/group_header.rb', line 32

def last_page?
  @last_page_indicator
end