[Source]
# File lib/wsdl/types.rb, line 18 18: def initialize 19: super 20: @schemas = [] 21: end
# File lib/wsdl/types.rb, line 37 37: def parse_attr(attr, value) 38: nil 39: end
# File lib/wsdl/types.rb, line 23 23: def parse_element(element) 24: case element 25: when SchemaName 26: o = XMLSchema::Schema.new 27: @schemas << o 28: o 29: when DocumentationName 30: o = Documentation.new 31: o 32: else 33: nil 34: end 35: end
[Validate]