Package com.inet.report
Class EngineStatus
java.lang.Object
com.inet.report.EngineStatus
- All Implemented Interfaces:
Serializable
This class provides status information for an Engine of a main report. This
includes errors which occurred during execution of the report. Errors
occurred in sub reports will also be included in the list provided by this
class.
- Since:
- 8.2
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetError(int index) Returns the EngineError at the given index.intReturns the number of errors in this status
-
Method Details
-
getErrorCount
public int getErrorCount()Returns the number of errors in this status- Returns:
- number of errors in this engine status
- Since:
- 8.2
-
getError
Returns the EngineError at the given index.- Parameters:
index- index of the EngineError to fetch- Returns:
- EngineError at the given index
- Throws:
IndexOutOfBoundsException- if index < 0 or index >=getErrorCount()- Since:
- 8.2
-