In Files

  • wsdl/xmlSchema/include.rb

Class/Module Index [+]

Quicksearch

WSDL::XMLSchema::Include

Attributes

content[R]
schemalocation[R]

Public Class Methods

new() click to toggle source
 
               # File wsdl/xmlSchema/include.rb, line 21
def initialize
  super
  @schemalocation = nil
  @content = nil
end
            

Public Instance Methods

parse_attr(attr, value) click to toggle source
 
               # 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
            
parse_element(element) click to toggle source
 
               # File wsdl/xmlSchema/include.rb, line 27
def parse_element(element)
  nil
end