Class: Aws::Xml::Parser::FlatListFrame 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

Instance Method Summary collapse

Methods inherited from Frame

new

Constructor Details

#initialize(*args) ⇒ FlatListFrame

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 FlatListFrame.



145
146
147
148
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 145

def initialize(*args)
  super
  @member = Frame.new(self, @ref.shape.member)
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.



158
159
160
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 158

def child_frame(xml_name)
  @member.child_frame(xml_name)
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.



162
163
164
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 162

def consume_child_frame(child)
  @result = @member.result
end

#resultObject

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.



150
151
152
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 150

def result
  @member.result
end

#set_text(value) ⇒ 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.



154
155
156
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 154

def set_text(value)
  @member.set_text(value)
end