Package de.huepattl.playground.berkeleydb.domain.model

Examples of de.huepattl.playground.berkeleydb.domain.model.Contacts


        /*
         * Create person object with owned contacts object.
         */
        {
            Contacts contacts;
            contacts = new Contacts();
            contacts.setMobilePhone("+555-1234");
            contacts.setPhone("+555-2345");
            contacts.setEmail("johndoe@example.com");
            contacts.setStreet("Middle-Of-Nowhere 231");
            contacts.setCity("Shell Beach");
            contacts.setZip("101");

            personToPersist = new SimplePerson("Doe", "John", contacts);
        }

        /*
 
View Full Code Here

TOP

Related Classes of de.huepattl.playground.berkeleydb.domain.model.Contacts

Copyright © 2018 www.massapicom. 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.