Package cat.quickdb.model

Examples of cat.quickdb.model.Prueba2


    @Test
    public void testObjectsWithCollectionIntuitive(){
        Pruebas p = new Pruebas();
        p.setDescripcion("diego");
        ArrayList<Prueba2> arrayP = new ArrayList<Prueba2>();
        Prueba2 p1 = new Prueba2();
        p1.setNombre("gato1");
        Prueba2 p2 = new Prueba2();
        p2.setNombre("gato2");
        arrayP.add(p1);
        arrayP.add(p2);

        p.setPrueba2(arrayP);
View Full Code Here

TOP

Related Classes of cat.quickdb.model.Prueba2

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.