Cisco Cisco Computer Telephony Integration Option 8.5 Developer's Guide

Page of 546
 
12-29
Cisco ICM Software CTI OS Developer’s Guide Release 6.0(0)
 
Chapter 12      Helper Classes
Arguments Class
Java:
 boolean SetValue(Arguments rArguments)
boolean SetValue(int iKey, Arg rArg)
boolean SetValue(String sKey, Arg rArg)
boolean SetValue(int iKey, int iVal)
boolean SetValue(String sKey, int iVal)
boolean SetValue(int iKey, short nValue)
boolean SetValue(String sKey, short nValue)
boolean SetValue(int iKey, String sValue)
boolean SetValue(String sKey, String sValue)
boolean SetValueUInt(int iKey, long lValue)
boolean SetValueUInt(String sKey, long lValue)
boolean SetValueUShort(int iKey, int iValue)
boolean SetValueUShort(String sKey, int iValue)
Parameters
key 
The key whose value is to be set.
value
The value to use in setting the element with the designated key.
success
Output parameter (return parameter in C++ and VB) containing a boolean 
indicating success or failure.
Return Values
Bool return value that indicates success or failure of the operation.
Remarks
The C++ methods overload several implementations for different value types and 
allow to specify a key via enumerated keywords (see 
) as well as string. COM and VB use String 
keywords and Variants as values.