Class: RightAws::RightSaxParserCallbackTemplate
- Inherits:
-
Object
- Object
- RightAws::RightSaxParserCallbackTemplate
show all
- Defined in:
- lib/awsbase/right_awsbase.rb
Overview
Instance Method Summary
(collapse)
Constructor Details
1148
1149
1150
|
# File 'lib/awsbase/right_awsbase.rb', line 1148
def initialize(right_aws_parser)
@right_aws_parser = right_aws_parser
end
|
Instance Method Details
- (Object) on_cdata_block(cdata)
1157
|
# File 'lib/awsbase/right_awsbase.rb', line 1157
def on_cdata_block(cdata); end
|
- (Object) on_characters(chars)
1151
1152
1153
|
# File 'lib/awsbase/right_awsbase.rb', line 1151
def on_characters(chars)
@right_aws_parser.text(chars)
end
|
1155
|
# File 'lib/awsbase/right_awsbase.rb', line 1155
def (msg); end
|
- (Object) on_end_document
1158
|
# File 'lib/awsbase/right_awsbase.rb', line 1158
def on_end_document; end
|
- (Object) on_processing_instruction(target, data)
1156
|
# File 'lib/awsbase/right_awsbase.rb', line 1156
def on_processing_instruction(target, data); end
|
- (Object) on_start_document
1154
|
# File 'lib/awsbase/right_awsbase.rb', line 1154
def on_start_document; end
|