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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Frame

#child_frame, #consume_child_frame, #initialize, #path, #yield_unhandled_value

Constructor Details

This class inherits a constructor from Aws::Xml::Parser::Frame

Class Method Details

.new(xml_name, parent) ⇒ 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.



247
248
249
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 247

def self.new(xml_name, parent)
  super(xml_name, parent, nil, nil)
end

Instance Method Details

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



251
252
253
254
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 251

def set_text(value)
  yield_unhandled_value(path, value)
  super
end