method
collect_type
ruby latest stable - Class:
WSDL::SOAP::MethodDefCreator
collect_type(type)private
No documentation available.
# File lib/wsdl/soap/methodDefCreator.rb, line 183
def collect_type(type)
# ignore inline type definition.
return if type.nil?
return if @types.include?(type)
@types << type
return unless @complextypes[type]
@complextypes[type].each_element do |element|
collect_type(element.type)
end
end