Class | WSDL::XMLSchema::Include |
In: |
wsdl/xmlSchema/include.rb
|
Parent: | Info |
content | [R] | |
schemalocation | [R] |
# File wsdl/xmlSchema/include.rb, line 21 def initialize super @schemalocation = nil @content = nil end
# File wsdl/xmlSchema/include.rb, line 31 def parse_attr(attr, value) case attr when SchemaLocationAttrName @schemalocation = URI.parse(value.source) if @schemalocation.relative? @schemalocation = parent.location + @schemalocation end @content = import(@schemalocation) @schemalocation else nil end end