Package org.apache.cayenne.profile.entity

Examples of org.apache.cayenne.profile.entity.Entity2


            DataContext context,
            HttpServletRequest request,
            HttpServletResponse response) {

        for (int i = 600; i < 850; i++) {
            Entity2 o1 = (Entity2) DataObjectUtils.objectForPK(
                    context,
                    Entity2.class,
                    i * 2);
            Entity2 o2 = (Entity2) DataObjectUtils.objectForPK(
                    context,
                    Entity2.class,
                    i * 2 + 1);

            List e3s1 = o1.getEntity3s();
View Full Code Here


            DataContext context,
            HttpServletRequest request,
            HttpServletResponse response) {

        for (int i = 0; i < 500; i++) {
            Entity2 e = (Entity2) context.newObject(Entity2.class);
            e.setName("Name_" + i);
           
            Entity3 e31 = (Entity3) context.newObject(Entity3.class);
            e31.setName("E31_" + i);
            e31.setEntity2(e);
View Full Code Here

TOP

Related Classes of org.apache.cayenne.profile.entity.Entity2

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.