Klasse EngineStatus
java.lang.Object
com.inet.report.EngineStatus
- Alle implementierten Schnittstellen:
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.
- Seit:
- 8.2
- Siehe auch:
-
Methodenübersicht
Modifikator und TypMethodeBeschreibunggetError(int index) Returns the EngineError at the given index.intReturns the number of errors in this status
-
Methodendetails
-
getErrorCount
public int getErrorCount()Returns the number of errors in this status- Gibt zurück:
- number of errors in this engine status
- Seit:
- 8.2
-
getError
Returns the EngineError at the given index.- Parameter:
index- index of the EngineError to fetch- Gibt zurück:
- EngineError at the given index
- Löst aus:
IndexOutOfBoundsException- if index < 0 or index >=getErrorCount()- Seit:
- 8.2
-