Interface IExecutionStatus

  • All Superinterfaces:
    com4j.Com4jObject, java.lang.Iterable<com4j.Com4jObject>

    public interface IExecutionStatus
    extends com4j.Com4jObject, java.lang.Iterable<com4j.Com4jObject>
    Represents the execution status of the scheduler. The user can scan through each test in the scheduler.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int count()
      The number of status elements in the object.
      IList eventsList()
      Gets the list of the execution events.
      java.lang.Object eventsList​(int index)  
      boolean finished()
      Checks if execution is finished or still in progress.
      java.lang.Object item​(int index)
      Gets a TestExecStatus object by index (1-based).
      java.util.Iterator<com4j.Com4jObject> iterator()
      Gets an ATL.IEnumOnSTLImpl enumerator for the TestExecStatus objects.
      void refreshExecStatusInfo​(java.lang.Object testData, boolean force)
      Refreshes the execution status from the execution controller.
      • Methods inherited from interface com4j.Com4jObject

        advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • count

        int count()

        The number of status elements in the object.

        Getter method for the COM property "Count"

        Returns:
        Returns a value of type int
      • refreshExecStatusInfo

        void refreshExecStatusInfo​(java.lang.Object testData,
                                   boolean force)

        Refreshes the execution status from the execution controller.

        Parameters:
        testData - Mandatory java.lang.Object parameter.
        force - Mandatory boolean parameter.
      • finished

        boolean finished()

        Checks if execution is finished or still in progress.

        Getter method for the COM property "Finished"

        Returns:
        Returns a value of type boolean
      • eventsList

        IList eventsList()

        Gets the list of the execution events.

        Returns:
        Returns a value of type step.repository.alm.v16.otaclient.IList
      • eventsList

        java.lang.Object eventsList​(int index)
      • item

        java.lang.Object item​(int index)

        Gets a TestExecStatus object by index (1-based).

        Getter method for the COM property "Item"

        Parameters:
        index - Mandatory int parameter.
        Returns:
        Returns a value of type java.lang.Object
      • iterator

        java.util.Iterator<com4j.Com4jObject> iterator()

        Gets an ATL.IEnumOnSTLImpl enumerator for the TestExecStatus objects. For information on the ATL Class and IEnumOnSTLImpl, see Microsoft documentation.

        Getter method for the COM property "_NewEnum"

        Specified by:
        iterator in interface java.lang.Iterable<com4j.Com4jObject>