Class: Interpreter

Inherits:
Object
  • Object
show all
Defined in:
lib/suds/interpreter.rb

Direct Known Subclasses

CSVInterpreter, FileInterpreter

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeInterpreter

Returns a new instance of Interpreter.



5
6
7
8
# File 'lib/suds/interpreter.rb', line 5

def initialize
  @headers = []
  @data = []
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



3
4
5
# File 'lib/suds/interpreter.rb', line 3

def data
  @data
end

#headersObject

Returns the value of attribute headers.



3
4
5
# File 'lib/suds/interpreter.rb', line 3

def headers
  @headers
end

Instance Method Details

#interpretObject



11
12
13
# File 'lib/suds/interpreter.rb', line 11

def interpret
  raise "No interpretation defined."
end