Examples of HelperEntity2


Examples of org.apache.cayenne.jpa.itest.ch2.entity.HelperEntity2

    // TODO: andrus 8/30/2006 - fails
    public void _testCollectionTypesProperties() {
        CollectionFieldPersistenceEntity o1 = new CollectionFieldPersistenceEntity();
        o1.setCollection(Collections.singleton(new HelperEntity1()));
        o1.setSet(Collections.singleton(new HelperEntity2()));
        o1.setList(Collections.singletonList(new HelperEntity3()));

        getEntityManager().persist(o1);
        getEntityManager().getTransaction().commit();
    }
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.