Package org.hibernate.jpa.boot.spi

Examples of org.hibernate.jpa.boot.spi.ClassDescriptor


  }

  @Override
  public void handleEntry(ArchiveEntry entry, ArchiveContext context) {
    final ClassFile classFile = toClassFile( entry );
    final ClassDescriptor classDescriptor = toClassDescriptor( classFile, entry );

    if ( ! isListedOrDetectable( context, classDescriptor.getName() ) ) {
      return;
    }

    // we are only interested in classes with certain annotations, so see if the ClassDescriptor
    // represents a class which contains any of those annotations
View Full Code Here


  }

  @Override
  public void handleEntry(ArchiveEntry entry, ArchiveContext context) {
    final ClassFile classFile = toClassFile( entry );
    final ClassDescriptor classDescriptor = toClassDescriptor( classFile, entry );

    if ( ! isListedOrDetectable( context, classDescriptor.getName() ) ) {
      return;
    }

    // we are only interested in classes with certain annotations, so see if the ClassDescriptor
    // represents a class which contains any of those annotations
View Full Code Here

TOP

Related Classes of org.hibernate.jpa.boot.spi.ClassDescriptor

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.