Class: SOAP::RPC::MethodDef::Parameter

Inherits:
Object
  • Object
show all
Defined in:
lib/soap/rpc/methodDef.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(io_type, name, qname, mapped_class) ⇒ Parameter

Returns a new instance of Parameter.



58
59
60
61
62
63
# File 'lib/soap/rpc/methodDef.rb', line 58

def initialize(io_type, name, qname, mapped_class)
  @io_type = io_type
  @name = name
  @qname = qname
  @mapped_class = mapped_class
end

Instance Attribute Details

#io_typeObject (readonly)

Returns the value of attribute io_type.



53
54
55
# File 'lib/soap/rpc/methodDef.rb', line 53

def io_type
  @io_type
end

#mapped_classObject (readonly)

Returns the value of attribute mapped_class.



56
57
58
# File 'lib/soap/rpc/methodDef.rb', line 56

def mapped_class
  @mapped_class
end

#nameObject (readonly)

Returns the value of attribute name.



54
55
56
# File 'lib/soap/rpc/methodDef.rb', line 54

def name
  @name
end

#qnameObject (readonly)

Returns the value of attribute qname.



55
56
57
# File 'lib/soap/rpc/methodDef.rb', line 55

def qname
  @qname
end