Examples of loadOne()


Examples of org.caffinitas.mapper.core.PersistenceSession.loadOne()

                @Override public void check(StInheritB2 inst) {
                    Assert.assertEquals(inst.getVal(), "val4");
                }
            }, 4);

            loadedC = session.loadOne(StInheritC.class, 5);
            Assert.assertNotNull(loadedC);
            Assert.assertEquals(loadedC.getId(), 5);
            Assert.assertEquals(loadedC.getVal(), "val5");
            Assert.assertTrue(loadedC instanceof StInheritC);
            Assert.assertEquals(((StInheritC) loadedC).getInhC(), "inhC");
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.