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