Class: SOAP::RPC::MethodDef::Parameter
- Defined in:
- lib/soap/rpc/methodDef.rb
Instance Attribute Summary collapse
-
#io_type ⇒ Object
readonly
Returns the value of attribute io_type.
-
#mapped_class ⇒ Object
readonly
Returns the value of attribute mapped_class.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#qname ⇒ Object
readonly
Returns the value of attribute qname.
Instance Method Summary collapse
-
#initialize(io_type, name, qname, mapped_class) ⇒ Parameter
constructor
A new instance of Parameter.
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_type ⇒ Object (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_class ⇒ Object (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 |
#name ⇒ Object (readonly)
Returns the value of attribute name.
54 55 56 |
# File 'lib/soap/rpc/methodDef.rb', line 54 def name @name end |
#qname ⇒ Object (readonly)
Returns the value of attribute qname.
55 56 57 |
# File 'lib/soap/rpc/methodDef.rb', line 55 def qname @qname end |