very minor jdoc changes

This commit is contained in:
Gavin King 2023-02-10 11:17:31 +01:00 committed by Christian Beikov
parent b1b45a7b7a
commit 48682d4104
5 changed files with 12 additions and 9 deletions

View File

@ -30,11 +30,11 @@ public @interface UuidGenerator {
enum Style { enum Style {
/** /**
* Defaults to {@link #RANDOM} * Defaults to {@link #RANDOM}.
*/ */
AUTO, AUTO,
/** /**
* Uses {@link UUID#randomUUID()} to generate values * Uses {@link UUID#randomUUID()} to generate values.
*/ */
RANDOM, RANDOM,
/** /**
@ -48,7 +48,7 @@ public @interface UuidGenerator {
} }
/** /**
* Which style of generation should be used * Specifies which {@linkplain Style style} of UUID generation should be used.
*/ */
Style style() default Style.AUTO; Style style() default Style.AUTO;
} }

View File

@ -24,7 +24,7 @@ import org.hibernate.boot.registry.selector.spi.StrategySelector;
import org.jboss.logging.Logger; import org.jboss.logging.Logger;
/** /**
* Standard implementation of the StrategySelector contract. * Standard implementation of the {@link StrategySelector} contract.
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */

View File

@ -6,7 +6,7 @@
*/ */
/** /**
* Defines a feature-set around named registration of implementations of various contracts and the ability * Defines a feature set around named registration of implementations of various contracts
* to select those implementations. * and the ability to select those implementations.
*/ */
package org.hibernate.boot.registry.selector; package org.hibernate.boot.registry.selector;

View File

@ -6,6 +6,9 @@
*/ */
/** /**
* Defines actual contract used for strategy selection : {@link org.hibernate.boot.registry.selector.spi.StrategySelector}. * Defines actual contract used for
* {@linkplain org.hibernate.boot.registry.selector.spi.StrategySelector strategy selection}.
*
* @link org.hibernate.boot.registry.selector.spi.StrategySelector
*/ */
package org.hibernate.boot.registry.selector.spi; package org.hibernate.boot.registry.selector.spi;

View File

@ -35,8 +35,8 @@ import org.hibernate.type.CompositeType;
import org.hibernate.type.Type; import org.hibernate.type.Type;
/** /**
* A mapping model object representing a property or field of an {@link PersistentClass entity} * A mapping model object representing a property or field of an {@linkplain PersistentClass entity}
* or {@link Component embeddable class}. * or {@linkplain Component embeddable class}.
* *
* @author Gavin King * @author Gavin King
*/ */