Class: WSDL::SOAP::Address
Instance Attribute Summary (collapse)
-
- (Object) location
readonly
Returns the value of attribute location.
Attributes inherited from Info
Instance Method Summary (collapse)
-
- (Address) initialize
constructor
A new instance of Address.
- - (Object) parse_attr(attr, value)
- - (Object) parse_element(element)
Methods inherited from Info
Constructor Details
- (Address) initialize
A new instance of Address
19 20 21 22 |
# File 'lib/wsdl/soap/address.rb', line 19 def initialize super @location = nil end |
Instance Attribute Details
- (Object) location (readonly)
Returns the value of attribute location
17 18 19 |
# File 'lib/wsdl/soap/address.rb', line 17 def location @location end |
Instance Method Details
- (Object) parse_attr(attr, value)
28 29 30 31 32 33 34 35 |
# File 'lib/wsdl/soap/address.rb', line 28 def parse_attr(attr, value) case attr when LocationAttrName @location = value.source else nil end end |
- (Object) parse_element(element)
24 25 26 |
# File 'lib/wsdl/soap/address.rb', line 24 def parse_element(element) nil end |