Не мог удержаться.
Ядро системы пишет гуру.
Код гуру приведён ниже.
И так везде.
С таким вот стилем комментариев.
и штуками типа if(true == isSomething() )..
Обьяснение этому одно - ему платят построчно.
/**
* Specifies whether this BlahBlah has response body or not.
*
* Implementation of BlahBlah interface.
*
* @return true if this BlahBlah has response body,
* false otherwise
*
* @see mycoolcompany.BlahBlah#hasResponseBody()
*/
public boolean hasResponseBody ()
{
boolean result;
/* check if we have request body */
if ( null == this.responseBody )
{
/* no, we do not */
result = false;
}
else
{
/* yes, we do */
result = true;
}
/* return the result */
return result;
} /* hasResponseBody() */