Examples of PCClone


Examples of org.apache.openjpa.persistence.enhance.common.apps.PCClone

     */
    public void testPCClone() {
        OpenJPAEntityManager pm =
            (OpenJPAEntityManager) currentEntityManager();
        startTx(pm);
        PCClone orig = new PCClone("test");
        pm.persist(orig);
        endTx(pm);
        pm.refresh(orig);
        PCClone copy = (PCClone) orig.clone();
        assertEquals("test", copy.getString());
        assertTrue(pm.isPersistent(orig));
        assertFalse(pm.isPersistent(copy));
        endEm(pm);
    }
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.