add cross-refs I missed

This commit is contained in:
Gavin 2022-12-30 21:59:40 +01:00
parent a3059fb9d7
commit efd6c8c6fd
2 changed files with 8 additions and 2 deletions

View File

@ -23,7 +23,12 @@ import static java.lang.String.CASE_INSENSITIVE_ORDER;
import static org.hibernate.query.sqm.produce.function.StandardFunctionReturnTypeResolvers.useArgType; import static org.hibernate.query.sqm.produce.function.StandardFunctionReturnTypeResolvers.useArgType;
/** /**
* Defines a registry for {@link SqmFunctionDescriptor} instances * Defines a registry for {@link SqmFunctionDescriptor} instances.
* <p>
* The {@code SqmFunctionRegistry} may be configured by a {@link org.hibernate.boot.model.FunctionContributor}.
*
* @see org.hibernate.boot.model.FunctionContributor
* @see org.hibernate.boot.model.FunctionContributions
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */

View File

@ -88,12 +88,13 @@ import static org.hibernate.internal.CoreLogging.messageLogger;
* However, a {@code Type} will often want access to the {@code TypeConfiguration}, which can be * However, a {@code Type} will often want access to the {@code TypeConfiguration}, which can be
* achieved by the {@code Type} simply implementing the {@link TypeConfigurationAware} interface. * achieved by the {@code Type} simply implementing the {@link TypeConfigurationAware} interface.
* <p> * <p>
* A {@code TypeConfiguration} may be configured via {@link org.hibernate.boot.model.TypeContributions}. * A {@code TypeConfiguration} may be configured by a {@link org.hibernate.boot.model.TypeContributor}.
* *
* @author Steve Ebersole * @author Steve Ebersole
* *
* @since 5.3 * @since 5.3
* *
* @see org.hibernate.boot.model.TypeContributor
* @see org.hibernate.boot.model.TypeContributions * @see org.hibernate.boot.model.TypeContributions
*/ */
@Incubating @Incubating