public Method

Definitions.collect_complextypes

There's no documentation for this item.

Source Code

# File wsdl/definitions.rb, line 79
def collect_complextypes
  result = @anontypes.dup
  if @types
    @types.schemas.each do |schema|
      result.concat(schema.collect_complextypes)
    end
  end
  @imports.each do |import|
    result.concat(import.content.collect_complextypes)
  end
  result
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.