Class: Aws::RightSaxParserCallback

Inherits:
Object
  • Object
show all
Defined in:
lib/awsbase/right_awsbase.rb

Overview


Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(right_aws_parser) ⇒ RightSaxParserCallback

Returns a new instance of RightSaxParserCallback.



831
832
833
# File 'lib/awsbase/right_awsbase.rb', line 831

def initialize(right_aws_parser)
    @right_aws_parser = right_aws_parser
end

Class Method Details

.include_callbackObject

:nodoc:



827
828
829
# File 'lib/awsbase/right_awsbase.rb', line 827

def self.include_callback
    include XML::SaxParser::Callbacks
end

Instance Method Details

#on_cdata_block(cdata) ⇒ Object



858
859
860
# File 'lib/awsbase/right_awsbase.rb', line 858

def on_cdata_block(cdata)
    ;
end

#on_characters(chars) ⇒ Object



839
840
841
# File 'lib/awsbase/right_awsbase.rb', line 839

def on_characters(chars)
    @right_aws_parser.text(chars)
end

#on_comment(msg) ⇒ Object



850
851
852
# File 'lib/awsbase/right_awsbase.rb', line 850

def on_comment(msg)
    ;
end

#on_end_documentObject



862
863
# File 'lib/awsbase/right_awsbase.rb', line 862

def on_end_document;
end

#on_end_element(name) ⇒ Object



843
844
845
# File 'lib/awsbase/right_awsbase.rb', line 843

def on_end_element(name)
    @right_aws_parser.tag_end(name)
end

#on_processing_instruction(target, data) ⇒ Object



854
855
856
# File 'lib/awsbase/right_awsbase.rb', line 854

def on_processing_instruction(target, data)
    ;
end

#on_start_documentObject



847
848
# File 'lib/awsbase/right_awsbase.rb', line 847

def on_start_document;
end

#on_start_element(name, attr_hash) ⇒ Object



835
836
837
# File 'lib/awsbase/right_awsbase.rb', line 835

def on_start_element(name, attr_hash)
    @right_aws_parser.tag_start(name, attr_hash)
end