Package tcg.syscontrol.cos

Examples of tcg.syscontrol.cos.CosIndexOutOfBoundException


   */
  public ICosManagedProcess cosGetManagedProcess(short index)
      throws CosIndexOutOfBoundException
  {
    if (index < 0 || index >= managedProcesses_.size())
      throw new CosIndexOutOfBoundException();
    return managedProcesses_.get(index).reference;
  }
View Full Code Here


   */
  public ICosManagedProcess cosGetActiveManagedProcess(short index)
      throws CosIndexOutOfBoundException
  {
    if (index < 0 || index >= managedProcesses_.size())
      throw new CosIndexOutOfBoundException();
    return managedProcesses_.get(index).activeReference;
  }
View Full Code Here

   */
  public CosProcessRuntimeDataStruct cosGetProcessInfo(short index)
      throws CosIndexOutOfBoundException
  {
    if (index < 0 || index >= managedProcesses_.size())
      throw new CosIndexOutOfBoundException();
    return managedProcesses_.get(index).runtime;
  }
View Full Code Here

   */
  public CosProcessDataStruct cosGetProcessConfig(short index)
      throws CosIndexOutOfBoundException
  {
    if (index < 0 || index >= managedProcesses_.size())
      throw new CosIndexOutOfBoundException();
    return managedProcesses_.get(index).config;
  }
View Full Code Here

   * @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))
    {
View Full Code Here

TOP

Related Classes of tcg.syscontrol.cos.CosIndexOutOfBoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.