Method: WSDL::XMLSchema::ComplexExtension#check_type

Defined in:
lib/wsdl/xmlSchema/complexExtension.rb

#check_typeObject



63
64
65
66
67
68
69
70
71
# File 'lib/wsdl/xmlSchema/complexExtension.rb', line 63

def check_type
  if @base == ::SOAP::ValueArrayName
    :TYPE_ARRAY
  elsif content
    :TYPE_STRUCT
  else
    basetype.check_type
  end
end