gpeCreateDummyConfigParam
gpeCreateDummyConfigParam(t_name[ ?typet_type][ ?valuet_value] [?verbose{t|nil} ] ) =>l_dummyConfigParam/nil
Description
Creates a dummyConfigParam DPL that can be added to a list with other dummyConfigParam DPLs and passed as the parameters argument to gpeCreateDummyConfig to create a dummyConfig DPL.
Arguments
|
Specifies the name of a |
|
|
Specifies the value to be applied to the |
|
Value Returned
Example
Creates a dummyConfigParam DPL with the specified name. The ?type is set to specify and the value is set to 45n:
dummyConfigParam = gpeCreateDummyConfigParam("I" ?type "specify" ?value "45n")
=> (nil value "45n" type "specify" name "I")
In the following example, ?type is set to default:
dummyConfigParam = gpeCreateDummyConfigParam("I" ?type "default")
=> (nil value "" type "default" name "I")
Return to top