Extended maintenance of Ruby versions 1.8.7 and 1.9.2 ended on July 31, 2014. Read more
# File wsdl/xmlSchema/any.rb, line 38
def parse_attr(attr, value)
case attr
when MaxOccursAttrName
@maxoccurs = value.source
when MinOccursAttrName
@minoccurs = value.source
when NamespaceAttrName
@namespace = value.source
when ProcessContentsAttrName
@process_contents = value.source
else
nil
end
end