method

parse_attr

v1_8_7_72 - Show latest stable - Class: WSDL::XMLSchema::Choice
parse_attr(attr, value)
public

No documentation available.

# File lib/wsdl/xmlSchema/choice.rb, line 55
  def parse_attr(attr, value)
    case attr
    when MaxOccursAttrName
      @maxoccurs = value.source
    when MinOccursAttrName
      @minoccurs = value.source
    else
      nil
    end
  end