Class: Aws::Xml::Parser::MapFrame Private

Inherits:
Frame
  • Object
show all
Defined in:
lib/aws-sdk-core/xml/parser/frame.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary

Attributes inherited from Frame

#parent, #ref, #result

Instance Method Summary collapse

Methods inherited from Frame

new, #set_text

Constructor Details

#initialize(*args) ⇒ MapFrame

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of MapFrame.



170
171
172
173
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 170

def initialize(*args)
  super
  @result = {}
end

Instance Method Details

#child_frame(xml_name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



175
176
177
178
179
180
181
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 175

def child_frame(xml_name)
  if xml_name == 'entry'
    MapEntryFrame.new(self, @ref)
  else
    raise NotImplementedError
  end
end

#consume_child_frame(child) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



183
184
185
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 183

def consume_child_frame(child)
  @result[child.key.result] = child.value.result
end