Method: WSDL::OperationBinding#parse_attr

Defined in:
lib/wsdl/operationBinding.rb

#parse_attr(attr, value) ⇒ Object



97
98
99
100
101
102
103
104
# File 'lib/wsdl/operationBinding.rb', line 97

def parse_attr(attr, value)
  case attr
  when NameAttrName
    @name = XSD::QName.new(targetnamespace, value.source)
  else
    nil
  end
end