Class: RightAws::RightSaxParserCallbackTemplate

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

Overview


Instance Method Summary collapse

Constructor Details

#initialize(right_aws_parser) ⇒ RightSaxParserCallbackTemplate

:nodoc:



1135
1136
1137
# File 'lib/awsbase/right_awsbase.rb', line 1135

def initialize(right_aws_parser) 
  @right_aws_parser = right_aws_parser 
end

Instance Method Details

#on_cdata_block(cdata) ⇒ Object



1144
# File 'lib/awsbase/right_awsbase.rb', line 1144

def on_cdata_block(cdata); end

#on_characters(chars) ⇒ Object



1138
1139
1140
# File 'lib/awsbase/right_awsbase.rb', line 1138

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

#on_comment(msg) ⇒ Object



1142
# File 'lib/awsbase/right_awsbase.rb', line 1142

def on_comment(msg); end

#on_end_documentObject



1145
# File 'lib/awsbase/right_awsbase.rb', line 1145

def on_end_document; end

#on_processing_instruction(target, data) ⇒ Object



1143
# File 'lib/awsbase/right_awsbase.rb', line 1143

def on_processing_instruction(target, data); end

#on_start_documentObject



1141
# File 'lib/awsbase/right_awsbase.rb', line 1141

def on_start_document; end