com.polarion.alm.builder.model.IBuildEvents


FIELDS
Modifiers and TypeNameDescription
String TYPE_ID structure id
String KEY_WARN_COUNT field warnCount of type {@link Integer}
String KEY_ERROR_COUNT field errorCount of type {@link Integer}
String KEY_FATAL_COUNT field fatalCount of type {@link Integer}
String KEY_EVENTS field events of type {@link List} of {@link IBuildEvent} s
METHODS
Modifiers and TypeNameDescription
int getWarnCount() Number of warnings.
int getErrorCount() Number of errors.
int getFatalCount() Number of fatal errors.
List getEvents() Reported events.

Note that normally this does not contain other events than errors and fatal errors.

void setWarnCount(int) Set number of warnings.
void setErrorCount(int) Set number of errors.
void setFatalCount(int) Set number of fatal errors.
void addEvent(IBuildEvent,boolean) Add event to the list.

The event is always added regardless of its severity (no filtering here).

void incWarnCount(int) Increase number of warnings.
void incErrorCount(int) Increase number of errors.
void incFatalCount(int) Increase number of fatal errors.

Back to Index