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