jetbrains.buildServer.serverSide
Interface TextStatusBuilder

All Superinterfaces:
ServerExtension, TeamCityExtension
All Known Implementing Classes:
XmlStatusProcessor

public interface TextStatusBuilder
extends ServerExtension

User: kir This ServerExtension allows to customize text status line of the build, i.e. the build description which usually contains text like "Tests passed: 234, failed: 4 (2 new)". Custom extensions are called after usual processing of the build results, so you may append, prepend, or replace the text entirely.


Method Summary
 void updateStatusText(java.lang.StringBuilder statusLine, SBuild build, boolean isRunning)
          Called to modify build status text.
 

Method Detail

updateStatusText

void updateStatusText(java.lang.StringBuilder statusLine,
                      SBuild build,
                      boolean isRunning)
Called to modify build status text.

Parameters:
statusLine - string builder which contains build status text
build - build whose status is updated
isRunning - if true, status of the running build is modified, false if build was finished and final status text is created