}
buf.append( "</table></p>\n" );
}
final ContactAddress address = contact.getAddress();
if( address != null && address.getStreet().content() != null )
{
buf.append( "<p>" );
buf.append( address.getStreet().text() );
buf.append( "<br/>" );
buf.append( address.getCity().text() );
buf.append( ", " );
buf.append( address.getState().text() );
buf.append( ' ' );
buf.append( address.getZipCode().text() );
buf.append( "</p>\n" );
}
}
buf.append( "</body></html>" );