Class: Handsoap::Parser::Interface

Inherits:
Object
  • Object
show all
Defined in:
lib/handsoap/parser.rb

Overview

:nodoc: all

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, operations = []) ⇒ Interface

Returns 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

#nameObject

Returns the value of attribute name.



12
13
14
# File 'lib/handsoap/parser.rb', line 12

def name
  @name
end

#operationsObject

Returns the value of attribute operations.



12
13
14
# File 'lib/handsoap/parser.rb', line 12

def operations
  @operations
end