Package org.apache.cayenne.profile.entity

Examples of org.apache.cayenne.profile.entity.Entity3.readPropertyDirectly()


        assertEquals(200, results.size());

        Iterator it = results.iterator();
        while (it.hasNext()) {
            Entity3 e3 = (Entity3) it.next();
            assertTrue(e3.readPropertyDirectly("entity2") instanceof Fault);
            e3.getEntity2().getName();
            assertFalse(e3.readPropertyDirectly("entity2") instanceof Fault);
        }
    }
}
View Full Code Here


        Iterator it = results.iterator();
        while (it.hasNext()) {
            Entity3 e3 = (Entity3) it.next();
            assertTrue(e3.readPropertyDirectly("entity2") instanceof Fault);
            e3.getEntity2().getName();
            assertFalse(e3.readPropertyDirectly("entity2") instanceof Fault);
        }
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.