* @see tcg.syscontrol.cos.ICosProcessManagerOperations#cosGetProcessStatusString(short)
*/
public String cosGetProcessStatusString(short index) throws CosIndexOutOfBoundException
{
if (index < 0 || index >= managedProcesses_.size())
throw new CosIndexOutOfBoundException();
ICosManagedProcess processRef = managedProcesses_.get(index).reference;
String status = "";
if (CorbaManager.isValidReference(processRef))
{