WSDL::XMLSchema::Import (Class)

In: wsdl/xmlSchema/import.rb
Parent: Info

Methods

Attributes

namespace  [R] 
schemalocation  [R] 

Public Class methods

[Source]

# File wsdl/xmlSchema/import.rb, line 20
  def initialize
    super
    @namespace = nil
    @schemalocation = nil
  end

Public Instance methods

[Source]

# 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

[Source]

# File wsdl/xmlSchema/import.rb, line 26
  def parse_element(element)
    nil
  end

[Validate]