class WSDL::Types
Attributes
schemas[R]
Public Class Methods
new()
click to toggle source
Calls superclass method
WSDL::Info::new
# File lib/wsdl/types.rb, line 18 def initialize super @schemas = [] end
Public Instance Methods
parse_attr(attr, value)
click to toggle source
# File lib/wsdl/types.rb, line 38 def parse_attr(attr, value) nil end
parse_element(element)
click to toggle source
# File lib/wsdl/types.rb, line 23 def parse_element(element) case element when SchemaName o = XMLSchema::Schema.new o.location = parent.location @schemas << o o when DocumentationName o = Documentation.new o else nil end end