Package cat.quickdb.complexDataStructure.model

Examples of cat.quickdb.complexDataStructure.model.IndividualObject1


                QuickDBTests.user, QuickDBTests.pass, QuickDBTests.scheme);
    }

    @Test
    public void multipleCollections(){
        IndividualObject1 ind1a = new IndividualObject1();
        ind1a.setDescription("individual object 1a");
        IndividualObject1 ind1b = new IndividualObject1();
        ind1b.setDescription("individual object 1b");
        IndividualObject1 ind1c = new IndividualObject1();
        ind1c.setDescription("individual object 1c");
        ArrayList individual1 = new ArrayList();
        individual1.add(ind1a);
        individual1.add(ind1b);
        individual1.add(ind1c);
View Full Code Here

TOP

Related Classes of cat.quickdb.complexDataStructure.model.IndividualObject1

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.