Package ArrayWithDropLists

Examples of ArrayWithDropLists.Person


    /**
     * populate<p>
     * <p>
     */
    public void populate() {
        Person p = new Person();
        p.setName("bob");
        p.setSize(3);
        p.setDepartment("Sales");
        this.getPeople().add(p);

        p = new Person();
        p.setName("jill");
        p.setSize(7);
        p.setDepartment("Technical");
        this.getPeople().add(p);
    }
View Full Code Here

TOP

Related Classes of ArrayWithDropLists.Person

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.