Class: RightAws::RightSaxParserCallbackTemplate
- Inherits:
-
Object
- Object
- RightAws::RightSaxParserCallbackTemplate
show all
- Defined in:
- lib/awsbase/right_awsbase.rb
Overview
Instance Method Summary
collapse
Constructor Details
1130
1131
1132
|
# File 'lib/awsbase/right_awsbase.rb', line 1130
def initialize(right_aws_parser)
@right_aws_parser = right_aws_parser
end
|
Instance Method Details
#on_cdata_block(cdata) ⇒ Object
1139
|
# File 'lib/awsbase/right_awsbase.rb', line 1139
def on_cdata_block(cdata); end
|
#on_characters(chars) ⇒ Object
1133
1134
1135
|
# File 'lib/awsbase/right_awsbase.rb', line 1133
def on_characters(chars)
@right_aws_parser.text(chars)
end
|
1137
|
# File 'lib/awsbase/right_awsbase.rb', line 1137
def (msg); end
|
#on_end_document ⇒ Object
1140
|
# File 'lib/awsbase/right_awsbase.rb', line 1140
def on_end_document; end
|
#on_processing_instruction(target, data) ⇒ Object
1138
|
# File 'lib/awsbase/right_awsbase.rb', line 1138
def on_processing_instruction(target, data); end
|
#on_start_document ⇒ Object
1136
|
# File 'lib/awsbase/right_awsbase.rb', line 1136
def on_start_document; end
|