module AWS::Core::XmlGrammar::REXMLSaxParserAdapter

Public Instance Methods

tag_end(name) click to toggle source
# File lib/aws/core/xml_grammar.rb, line 510
def tag_end(name)
  end_element(name)
end
tag_start(name, attrs) click to toggle source
# File lib/aws/core/xml_grammar.rb, line 506
def tag_start(name, attrs)
  start_element(name, attrs)
end
text(chars) click to toggle source
# File lib/aws/core/xml_grammar.rb, line 514
def text(chars)
  characters(chars)
end