Extended maintenance of Ruby versions 1.8.7 and 1.9.2 ended on July 31, 2014. Read more
# File wsdl/xmlSchema/sequence.rb, line 36
def <<(element)
@elements << element
end
# File wsdl/xmlSchema/sequence.rb, line 32
def elementformdefault
parent.elementformdefault
end
# File wsdl/xmlSchema/sequence.rb, line 55
def parse_attr(attr, value)
case attr
when MaxOccursAttrName
@maxoccurs = value.source
when MinOccursAttrName
@minoccurs = value.source
else
nil
end
end