*/
protected void extractBailOut( Matcher matcher )
{
String reason = matcher.group(1);
BailOut bailOut = new BailOut( reason );
String commentToken = matcher.group( 2 );
if ( commentToken != null )
{
String text = matcher.group( 3 );
Comment comment = new Comment( text );
bailOut.setComment( comment );
}
this.bailOuts.add( bailOut );
this.tapLines.add( bailOut );
}