Package org.hibernate.ejb.criteria.expression

Examples of org.hibernate.ejb.criteria.expression.EntityTypeExpression


   * @param entityType The entity defining this root
   */
  @SuppressWarnings({ "unchecked" })
    protected FromImpl(CriteriaBuilderImpl criteriaBuilder, EntityType<X> entityType) {
    super( criteriaBuilder, entityType.getBindableJavaType(), null, null, entityType );
    this.type = new EntityTypeExpression( criteriaBuilder, entityType.getBindableJavaType() );
  }
View Full Code Here


      Class<X> javaType,
      PathImpl<Z> origin,
      Attribute<? super Z, ?> attribute,
      ManagedType<X> model) {
    super( criteriaBuilder, javaType, origin, attribute, model );
    this.type = new EntityTypeExpression( criteriaBuilder, model.getJavaType() );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.ejb.criteria.expression.EntityTypeExpression

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.