Class: RightAws::RightSaxParserCallbackTemplate
- Inherits:
-
Object
- Object
- RightAws::RightSaxParserCallbackTemplate
show all
- Defined in:
- lib/awsbase/right_awsbase.rb
Overview
Instance Method Summary
collapse
Constructor Details
966
967
968
|
# File 'lib/awsbase/right_awsbase.rb', line 966
def initialize(right_aws_parser)
@right_aws_parser = right_aws_parser
end
|
Instance Method Details
#on_cdata_block(cdata) ⇒ Object
975
|
# File 'lib/awsbase/right_awsbase.rb', line 975
def on_cdata_block(cdata); end
|
#on_characters(chars) ⇒ Object
969
970
971
|
# File 'lib/awsbase/right_awsbase.rb', line 969
def on_characters(chars)
@right_aws_parser.text(chars)
end
|
973
|
# File 'lib/awsbase/right_awsbase.rb', line 973
def (msg); end
|
#on_end_document ⇒ Object
976
|
# File 'lib/awsbase/right_awsbase.rb', line 976
def on_end_document; end
|
#on_processing_instruction(target, data) ⇒ Object
974
|
# File 'lib/awsbase/right_awsbase.rb', line 974
def on_processing_instruction(target, data); end
|
#on_start_document ⇒ Object
972
|
# File 'lib/awsbase/right_awsbase.rb', line 972
def on_start_document; end
|