* @param matcher REGEX Matcher.
*/
protected void extractFooter( Matcher matcher )
{
String text = matcher.group ( 1 );
Footer footer = new Footer( text );
final String commentToken = matcher.group( 2 );
if ( commentToken != null )
{
String commentText = matcher.group( 3 );
final Comment comment = new Comment ( commentText );
footer.setComment( comment );
}
this.footer = footer;
}