Package jodd.json.mock

Examples of jodd.json.mock.Phone


  public Person createJodder() {
    Address home = new Address("173 Hackers Drive", "New York", "NY", new Zipcode("123123"));
    Address work = new Address("42 Computer Center", "Earth", "Milkiway", new Zipcode("42"));

    Phone pagerPhone = new Phone(PhoneNumberType.PAGER, "123 555-1234");
    Phone cellPhone = new Phone(PhoneNumberType.MOBILE, "770 777 5432");

    Calendar cal = Calendar.getInstance();
    cal.set(1988, Calendar.NOVEMBER, 23, 8, 11);
    Person charlie = new Person("Igor", "Spasic", cal.getTime(), home, work);
    cal = Calendar.getInstance();
View Full Code Here


  public Person createPedro() {
    Zipcode pedroZip = new Zipcode("848485");
    Address pedroHome = new Address("12 Acrel\u00E8ndia Way", "Rio de Janeiro", "Brazil", pedroZip);
    Address pedroWork = new Address("12 Acrel\u00E8ndia Way", "Rio de Janeiro", "Brazil", pedroZip);

    Phone pedroPhone = new Phone(PhoneNumberType.MOBILE, "123 555 2323");

    Calendar pedroCal = Calendar.getInstance();
    pedroCal.set(1980, Calendar.APRIL, 12, 11, 45);
    Person pedro = new Person("Pedro", "Sanchez", pedroCal.getTime(), pedroHome, pedroWork);
    pedro.getPhones().add(pedroPhone);
View Full Code Here

TOP

Related Classes of jodd.json.mock.Phone

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.