Package org.hibernate.jpa.boot.internal

Examples of org.hibernate.jpa.boot.internal.MappingFileDescriptorImpl


  protected final void notifyMatchedMappingFile(ArchiveEntry entry) {
    callback.locatedMappingFile( toMappingFileDescriptor( entry ) );
  }

  protected MappingFileDescriptor toMappingFileDescriptor(ArchiveEntry entry) {
    return new MappingFileDescriptorImpl( entry.getNameWithinArchive(), entry.getStreamAccess() );
  }
View Full Code Here


        mappingFileSet.add( mappingFileDescriptor );
      }
      else {
        // to make sure we have proper equals/hashcode
        mappingFileSet.add(
            new MappingFileDescriptorImpl(
                mappingFileDescriptor.getName(),
                mappingFileDescriptor.getStreamAccess()
            )
        );
      }
View Full Code Here

        mappingFileSet.add( mappingFileDescriptor );
      }
      else {
        // to make sure we have proper equals/hashcode
        mappingFileSet.add(
            new MappingFileDescriptorImpl(
                mappingFileDescriptor.getName(),
                mappingFileDescriptor.getStreamAccess()
            )
        );
      }
View Full Code Here

  protected final void notifyMatchedMappingFile(ArchiveEntry entry) {
    callback.locatedMappingFile( toMappingFileDescriptor( entry ) );
  }

  protected MappingFileDescriptor toMappingFileDescriptor(ArchiveEntry entry) {
    return new MappingFileDescriptorImpl( entry.getNameWithinArchive(), entry.getStreamAccess() );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.jpa.boot.internal.MappingFileDescriptorImpl

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.