Class: Aws::Xml::Parser::FlatListFrame Private
- 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
Instance Method Summary collapse
- #child_frame(xml_name) ⇒ Object private
- #consume_child_frame(child) ⇒ Object private
-
#initialize(xml_name, *args) ⇒ FlatListFrame
constructor
private
A new instance of FlatListFrame.
- #result ⇒ Object private
- #set_text(value) ⇒ Object private
Methods inherited from Frame
new, #path, #yield_unhandled_value
Constructor Details
#initialize(xml_name, *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.
178 179 180 181 |
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 178 def initialize(xml_name, *args) super @member = Frame.new(xml_name, 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.
191 192 193 |
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 191 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.
195 196 197 |
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 195 def consume_child_frame(child) @result = @member.result end |
#result ⇒ 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 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.
187 188 189 |
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 187 def set_text(value) @member.set_text(value) end |