Package org.hibernate.metamodel.source.annotation.jaxb

Examples of org.hibernate.metamodel.source.annotation.jaxb.XMLTable


    }
  }

  private void mockTableIfNonExist(XMLEntity entity, EntityMappingsMocker.Default defaults) {
    if ( hasSchemaOrCatalogDefined( defaults ) ) {
      XMLTable table = entity.getTable();
      if ( table == null ) {
        table = new XMLTable();
        entity.setTable( table );
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.metamodel.source.annotation.jaxb.XMLTable

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.