Package org.hibernate.envers.test.performance.complex

Examples of org.hibernate.envers.test.performance.complex.ChildEntity1


        return ce;
    }

    private ChildEntity1 createChildEntity1() {
        ChildEntity1 ce = new ChildEntity1();
        ce.setId(idCounter++);
        ce.setData1("xxx");
        ce.setData2("yyy");
        ce.setChild1(createChildEntity2());
        ce.setChild2(createChildEntity2());

        return ce;
    }
View Full Code Here

TOP

Related Classes of org.hibernate.envers.test.performance.complex.ChildEntity1

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.