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.



15
16
17
18
# File 'lib/handsoap/parser.rb', line 15

def initialize(name, operations = [])
  @name = name
  @operations = operations || []
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



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

def name
  @name
end

#operationsObject

Returns the value of attribute operations.



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

def operations
  @operations
end