Class: Handsoap::Parser::Interface
- Inherits:
-
Object
- Object
- Handsoap::Parser::Interface
- Defined in:
- lib/handsoap/parser.rb
Overview
:nodoc: all
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#operations ⇒ Object
Returns the value of attribute operations.
Instance Method Summary collapse
-
#initialize(name, operations = []) ⇒ Interface
constructor
A new instance of Interface.
Constructor Details
#initialize(name, operations = []) ⇒ Interface
Returns a new instance of Interface.
15 16 17 18 |
# File 'lib/handsoap/parser.rb', line 15 def initialize(name, operations = []) @name = name @operations = operations || [] end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
13 14 15 |
# File 'lib/handsoap/parser.rb', line 13 def name @name end |
#operations ⇒ Object
Returns the value of attribute operations.
13 14 15 |
# File 'lib/handsoap/parser.rb', line 13 def operations @operations end |