Package ArrayWithGraphics

Examples of ArrayWithGraphics.Thing


        super();
        this.initialize();
        ImageData i = ImageValue.get(this.getqq_sourceImage());
        this.setThings(new Array_Of_Thing<Thing>());
        PersonDN p = new PersonDN();
        this.getThings().set(0, new Thing(i, "Bob"));

        p.setName("Bob");
        p.setAge(22);
        p.setParent(this.getThings().get(0).getPerson());
        p = new PersonDN();
        p.setName("Bob");
        p.setAge(22);
        p.setParent(this.getThings().get(0).getPerson());

        this.getThings().set(1, new Thing(i, "Mary"));
        p = new PersonDN();
        p.setName("Mary");
        p.setAge(34);
        p.setParent(this.getThings().get(1).getPerson());
        p = new PersonDN();
        p.setName("Mary");
        p.setAge(34);
        p.setParent(this.getThings().get(1).getPerson());

        this.getThings().set(2, new Thing(i, "Jim"));
        p = new PersonDN();
        p.setName("Jim");
        p.setAge(86);
        p.setParent(this.getThings().get(2).getPerson());
        p = new PersonDN();
        p.setName("Jim");
        p.setAge(86);
        p.setParent(this.getThings().get(2).getPerson());

        this.getThings().set(3, new Thing(i, "Sue"));
        p = new PersonDN();
        p.setName("Sue");
        p.setAge(56);
        p.setParent(this.getThings().get(3).getPerson());
        p = new PersonDN();
View Full Code Here

TOP

Related Classes of ArrayWithGraphics.Thing

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.