very minor jdoc changes

This commit is contained in:
Gavin King 2023-02-10 11:17:31 +01:00
parent 241cdf16d9
commit 19c559dfb9
5 changed files with 12 additions and 9 deletions

View File

@ -30,11 +30,11 @@ public @interface UuidGenerator {
enum Style {
/**
* Defaults to {@link #RANDOM}
* Defaults to {@link #RANDOM}.
*/
AUTO,
/**
* Uses {@link UUID#randomUUID()} to generate values
* Uses {@link UUID#randomUUID()} to generate values.
*/
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;
}

View File

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

View File

@ -6,7 +6,7 @@
*/
/**
* Defines a feature-set around named registration of implementations of various contracts and the ability
* to select those implementations.
* Defines a feature set around named registration of implementations of various contracts
* and the ability to select those implementations.
*/
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;

View File

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