Interface ComAnalysisExecutionInfo
- All Known Implementing Classes:
AnalysisExecutionInfo
public interface ComAnalysisExecutionInfo
Represents the ecu.test specific COMAnalysisExecutionInfo API.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
abort()
Aborts the current analysis execution.Folder where trace and log files of the currently executed analysis job are stored.Queries the path to report database of current (or most recent) analysis job execution.Returns the result of the analysis job execution.getState()
Returns the state of the current analysis job execution.
-
Method Details
-
abort
Aborts the current analysis execution.- Returns:
true
if the abortion succeeded,false
, if the analysis execution has already finished or aborted- Throws:
ETComException
- in case of a COM exception
-
getReportDb
Queries the path to report database of current (or most recent) analysis job execution.- Returns:
- the path to report database
- Throws:
ETComException
- in case of a COM exception
-
getLogFolder
Folder where trace and log files of the currently executed analysis job are stored. Please note, each analysis job has got a separate log folder.- Returns:
- the log folder
- Throws:
ETComException
- in case of a COM exception
-
getResult
Returns the result of the analysis job execution. If the execution has not finished yet, the result equates the result at calling time.- Returns:
- the current overall result. One of:
- NONE
- SUCCESS
- FAILED
- ERROR
- Throws:
ETComException
- in case of a COM exception
-
getState
Returns the state of the current analysis job execution.- Returns:
- the state current analysis job execution. One of:
- IDLE
- RUNNING
- ABORTED
- FINISHED
- Throws:
ETComException
- in case of a COM exception
-