Method: WSDL::SOAP::MethodDefCreator#initialize

Defined in:
lib/wsdl/soap/methodDefCreator.rb

#initialize(definitions, name_creator, modulepath, defined_const) ⇒ MethodDefCreator

Returns a new instance of MethodDefCreator.



28
29
30
31
32
33
34
35
36
37
# File 'lib/wsdl/soap/methodDefCreator.rb', line 28

def initialize(definitions, name_creator, modulepath, defined_const)
  @definitions = definitions
  @name_creator = name_creator
  @modulepath = modulepath
  @simpletypes = @definitions.collect_simpletypes
  @complextypes = @definitions.collect_complextypes
  @elements = @definitions.collect_elements
  @defined_const = defined_const
  @assigned_method = {}
end