Package org.hibernate.envers.internal.entities.mapper.relation

Examples of org.hibernate.envers.internal.entities.mapper.relation.SortedSetCollectionMapper


    final Type type = propertyValue.getType();
    final boolean embeddableElementType = isEmbeddableElementType();
    if ( type instanceof SortedSetType ) {
      currentMapper.addComposite(
          propertyAuditingData.getPropertyData(),
          new SortedSetCollectionMapper(
              commonCollectionMapperData,
              TreeSet.class,
              SortedSetProxy.class,
              elementComponentData,
              propertyValue.getComparator(),
View Full Code Here


    final Type type = propertyValue.getType();
    final boolean embeddableElementType = isEmbeddableElementType();
    if ( type instanceof SortedSetType ) {
      currentMapper.addComposite(
          propertyAuditingData.getPropertyData(),
          new SortedSetCollectionMapper(
              commonCollectionMapperData,
              TreeSet.class,
              SortedSetProxy.class,
              elementComponentData,
              propertyValue.getComparator(),
View Full Code Here

TOP

Related Classes of org.hibernate.envers.internal.entities.mapper.relation.SortedSetCollectionMapper

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.