= class Gda::Parameter
Parameters are the way clients have to send an unlimited number of arguments
to the providers.

== Object Hierarchy
* Object
  * GLib::Boxed
    * Gda::Parameter

== Class Methods
--- Gda::Parameter.new(name, value)
    Creates a new Gda::Parameter object, which is usually used with
    Gda::ParameterList.
    * name: the name for the parameter being created. 
    * value: a value for the parameter, as a Gda::Value object.  
    * Returns: a newly created Gda::Parameter object.

== Instance Methods
--- name
    This method returns the name of the parameter.
    * Returns: the name of the parameter.

--- name=(name)
    Sets the name of the parameter.
    * name: new name for the parameter.  
    * Returns: the given parameter 'name'.

--- set_name(name)
    Sets the name of the parameter.
    * name: new name for the parameter.  
    * Returns: self.

--- set_value(value)
    Sets the value of the parameter.
    * value: new value for the parameter, as a Gda::Value object.  
    * Returns: self.

--- value
    This method returns the value of the parameter, as a Gda::Value object.
    * Returns: the value of the parameter, as a Gda::Value object.

--- value=(value)
    Sets the value of the parameter.
    * value: new value for the parameter, as a Gda::Value object.  
    * Returns: the given parameter 'value'.

== See Also
((<Gda>)).

- ((<lrz>))
