protected void compute( final Set<String> values )
{
values.add( "Personal" );
final Contact c = context( Contact.class );
final ContactRepository cdb = c.nearest( ContactRepository.class );
if( cdb != null )
{
for( Contact contact : cdb.getContacts() )
{
if( contact != c )
{
values.add( contact.getCategory().text( true ) );
}