From 683478674cc4041550199c00bd34852751b55688 Mon Sep 17 00:00:00 2001 From: Hardy Ferentschik Date: Wed, 3 Aug 2011 08:56:57 +0200 Subject: [PATCH] HHH-6537 formatting --- .../hibernate/metamodel/source/binder/IdentifierSource.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hibernate-core/src/main/java/org/hibernate/metamodel/source/binder/IdentifierSource.java b/hibernate-core/src/main/java/org/hibernate/metamodel/source/binder/IdentifierSource.java index c6d25e59dc..9ede42fd5d 100644 --- a/hibernate-core/src/main/java/org/hibernate/metamodel/source/binder/IdentifierSource.java +++ b/hibernate-core/src/main/java/org/hibernate/metamodel/source/binder/IdentifierSource.java @@ -25,7 +25,7 @@ package org.hibernate.metamodel.source.binder; /** * Contract describing source of identifier information for the entity. - * + * * @author Steve Ebersole */ public interface IdentifierSource { @@ -35,12 +35,14 @@ public interface IdentifierSource { * annotation. Indicates the {@link IdentifierSource} is castable to {@link SimpleIdentifierSource}. */ SIMPLE, + /** * What we used to term an "embedded composite identifier", which is not to be confused with the JPA * term embedded. Specifically a composite id where there is no component class, though there may be an * {@code @IdClass}. */ COMPOSITE, + /** * Composite identifier with an actual component class used to aggregate the individual attributes */