Package org.eclipse.sapphire.samples.contacts

Examples of org.eclipse.sapphire.samples.contacts.Contact.nearest()


        final SendContactOp op = context( SendContactOp.class );
        final Contact contact = op.getContact().content();
       
        if( contact != null )
        {
            for( Contact c : contact.nearest( ContactRepository.class ).getContacts() )
            {
                final String email = c.getEMail().text();
               
                if( email != null )
                {
View Full Code Here


    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() )
            {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.