Class: WSDL::XMLSchema::Union
Instance Attribute Summary collapse
-
#member_types ⇒ Object
readonly
Returns the value of attribute member_types.
Attributes inherited from Info
Instance Method Summary collapse
-
#initialize ⇒ Union
constructor
A new instance of Union.
- #parse_attr(attr, value) ⇒ Object
Methods inherited from Info
#inspect, #parse_element, #parse_epilogue
Constructor Details
permalink #initialize ⇒ Union
Returns a new instance of Union.
21 22 23 24 |
# File 'lib/wsdl/xmlSchema/union.rb', line 21 def initialize super @member_types = nil end |
Instance Attribute Details
Instance Method Details
permalink #parse_attr(attr, value) ⇒ Object
[View source]
26 27 28 29 30 31 |
# File 'lib/wsdl/xmlSchema/union.rb', line 26 def parse_attr(attr, value) case attr when MemberTypesAttrName @member_types = value.source end end |