| In: |
wsdl/xmlSchema/import.rb
|
| Parent: | Info |
| namespace | [R] | |
| schemalocation | [R] |
# File wsdl/xmlSchema/import.rb, line 20 def initialize super @namespace = nil @schemalocation = nil end
# File wsdl/xmlSchema/import.rb, line 30 def parse_attr(attr, value) case attr when NamespaceAttrName @namespace = value when SchemaLocationAttrName @schemalocation = value else nil end end