Class WSDL::SOAP::Address
In: lib/wsdl/soap/address.rb
Parent: Info

Methods

Attributes

location  [R] 

Public Class methods

[Source]

    # File lib/wsdl/soap/address.rb, line 19
19:   def initialize
20:     super
21:     @location = nil
22:   end

Public Instance methods

[Source]

    # File lib/wsdl/soap/address.rb, line 28
28:   def parse_attr(attr, value)
29:     case attr
30:     when LocationAttrName
31:       @location = value.source
32:     else
33:       nil
34:     end
35:   end

[Source]

    # File lib/wsdl/soap/address.rb, line 24
24:   def parse_element(element)
25:     nil
26:   end

[Validate]