Package javax.persistence

Examples of javax.persistence.PrimaryKeyJoinColumn.referencedColumnName()


        logger.log(BasicLevel.ERROR, sc.getSourceDescShort()
            + ": inheritance join define with a column that does not exist - ("
            + a1.name() + ") not found!");
        return;
      }
      if (a1.referencedColumnName().equals("")) {
        nbErrors++;
        logger.log(BasicLevel.ERROR, sc.getSourceDescShort()
            + ": inheritance join define with no column associated in superclass!");
        return;
      }
View Full Code Here


        nbErrors++;
        logger.log(BasicLevel.ERROR, sc.getSourceDescShort()
            + ": inheritance join define with no column associated in superclass!");
        return;
      }
      jcol.targetColumn = a1.referencedColumnName();
      sc.inheritance.join.columns.add(jcol);
      return;
    }
    // Now parse PrimaryKeyJoinColumns: the PrimaryKeyJoinColmun from the "pkjcs" array
    for (PrimaryKeyJoinColumn pkjc : a2.value()) {
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.