Class: RightAws::RightSaxParserCallback
- Inherits:
-
RightSaxParserCallbackTemplate
show all
- Defined in:
- lib/awsbase/right_awsbase.rb
Class Method Summary
(collapse)
Instance Method Summary
(collapse)
#initialize, #on_cdata_block, #on_characters, #on_comment, #on_end_document, #on_processing_instruction, #on_start_document
Class Method Details
+ (Object) include_callback
1163
1164
1165
|
# File 'lib/awsbase/right_awsbase.rb', line 1163
def self.include_callback
include XML::SaxParser::Callbacks
end
|
Instance Method Details
- (Object) on_end_element(name)
1169
1170
1171
|
# File 'lib/awsbase/right_awsbase.rb', line 1169
def on_end_element(name)
@right_aws_parser.tag_end(name)
end
|
- (Object) on_start_element(name, attr_hash)
1166
1167
1168
|
# File 'lib/awsbase/right_awsbase.rb', line 1166
def on_start_element(name, attr_hash)
@right_aws_parser.tag_start(name, attr_hash)
end
|