TPTP 4.4.0 Testing Tools Project
Public API Specification

org.eclipse.hyades.test.ui.forms.util
Interface ITestLogVerdictTraversal

All Known Implementing Classes:
TestLogVerdictCollection, TestLogVerdictTraversalQuery

public interface ITestLogVerdictTraversal

Provisional API: This API is subject to change in the next release.
As of TPTP V4.4.0, this is stable provisional API (see http://www.eclipse.org/tptp/home/documents/process/development/api_contract.html).

Field Summary
static int VERDICT_TYPE_ALL
           
 
Method Summary
 boolean contains(int verdictType)
           
 org.eclipse.hyades.models.common.testprofile.TPFExecutionResult getExecutionResult()
           
 org.eclipse.hyades.models.common.testprofile.TPFVerdictEvent getFirst(int verdictType)
           
 org.eclipse.hyades.models.common.testprofile.TPFVerdictEvent getLast(int verdictType)
           
 org.eclipse.hyades.models.common.testprofile.TPFVerdictEvent getNext(int verdictType, java.lang.Object current)
          Returns the the next TPFVerdictEvent after the specified current element, or the first TPFVerdictEvent of the execution result this class represents when current is null.
 org.eclipse.hyades.models.common.testprofile.TPFVerdictEvent getPrevious(int verdictType, java.lang.Object current)
          Returns the the previous TPFVerdictEvent before the specified current element, or the last TPFVerdictEvent of the execution result this class represents when current is null.
 boolean hasNext(int verdictType, java.lang.Object current)
           
 boolean hasPrevious(int verdictType, java.lang.Object current)
           
 

Field Detail

VERDICT_TYPE_ALL

public static final int VERDICT_TYPE_ALL
See Also:
Constant Field Values
Method Detail

contains

public boolean contains(int verdictType)

hasPrevious

public boolean hasPrevious(int verdictType,
                           java.lang.Object current)

hasNext

public boolean hasNext(int verdictType,
                       java.lang.Object current)

getFirst

public org.eclipse.hyades.models.common.testprofile.TPFVerdictEvent getFirst(int verdictType)

getLast

public org.eclipse.hyades.models.common.testprofile.TPFVerdictEvent getLast(int verdictType)

getNext

public org.eclipse.hyades.models.common.testprofile.TPFVerdictEvent getNext(int verdictType,
                                                                            java.lang.Object current)
Returns the the next TPFVerdictEvent after the specified current element, or the first TPFVerdictEvent of the execution result this class represents when current is null.

Parameters:
verdictType -
current -
Returns:

getPrevious

public org.eclipse.hyades.models.common.testprofile.TPFVerdictEvent getPrevious(int verdictType,
                                                                                java.lang.Object current)
Returns the the previous TPFVerdictEvent before the specified current element, or the last TPFVerdictEvent of the execution result this class represents when current is null.

Parameters:
verdictType -
current -
Returns:

getExecutionResult

public org.eclipse.hyades.models.common.testprofile.TPFExecutionResult getExecutionResult()

TPTP 4.4.0 Testing Tools Project
Public API Specification