final StringBuffer b = new StringBuffer();
if ( mOptions.mIncludeSequenceNumber )
{
append( b, "" + notif.getSequenceNumber() );
}
if ( mOptions.mIncludeTimeStamp )
{
append( b, new Date( notif.getTimeStamp() ) );
}
if ( mOptions.mIncludeObjectName )
{
append( b, notif.getSource() );
}
if ( mOptions.mIncludeType )
{
append( b, notif.getType() );
}
if ( mOptions.mIncludeUserData )
{
append( b, notif.getUserData() );
}
return( b );