Package com.sun.jdo.api.persistence.model.mapping

Examples of com.sun.jdo.api.persistence.model.mapping.MappingTableElement


   * @param table mapping table element to be used with this key.
   * @exception ModelException if impossible
   */
  public void setTable (MappingTableElement table) throws ModelException
  {
    MappingTableElement old = getTable();

    try
    {
      fireVetoableChange(PROP_TABLE, old, table);
      setTableInternal(table);
View Full Code Here


   * @param table mapping table element to be used with this key.
   * @exception ModelException if impossible
   */
  public void setTable (MappingTableElement table) throws ModelException
  {
    MappingTableElement old = getTable();

    try
    {
      fireVetoableChange(PROP_TABLE, old, table);
      setTableInternal(table);
View Full Code Here

TOP

Related Classes of com.sun.jdo.api.persistence.model.mapping.MappingTableElement

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.