Examples of MappedSuperclassParent


Examples of com.google.appengine.datanucleus.test.jpa.SubclassesJPA.MappedSuperclassParent

    testParent(new Joined(), null);
    testParent(new SingleTable(), SingleTable.class.getName());
  }

  public void testInsertParent_MappedSuperclass() throws EntityNotFoundException {
    MappedSuperclassParent parent = new MappedSuperclassParent();
    parent.setAString("a");
    beginTxn();
    try {
      em.persist(parent);
      commitTxn();
      fail("expected pe");
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.