Class: Interpreter
- Inherits:
-
Object
- Object
- Interpreter
- Defined in:
- lib/suds/interpreter.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#headers ⇒ Object
Returns the value of attribute headers.
Instance Method Summary collapse
-
#initialize ⇒ Interpreter
constructor
A new instance of Interpreter.
- #interpret ⇒ Object
Constructor Details
#initialize ⇒ Interpreter
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
#data ⇒ Object
Returns the value of attribute data.
3 4 5 |
# File 'lib/suds/interpreter.rb', line 3 def data @data end |
#headers ⇒ Object
Returns the value of attribute headers.
3 4 5 |
# File 'lib/suds/interpreter.rb', line 3 def headers @headers end |
Instance Method Details
#interpret ⇒ Object
11 12 13 |
# File 'lib/suds/interpreter.rb', line 11 def interpret raise "No interpretation defined." end |