minor fixes to javadoc

This commit is contained in:
Gavin 2022-12-23 13:53:02 +01:00
parent 724ae7986d
commit a666f98357
2 changed files with 5 additions and 6 deletions

View File

@ -248,9 +248,8 @@ import static org.hibernate.type.descriptor.DateTimeUtils.appendAsTimestampWithN
* <p> * <p>
* Almost every subclass must, as a bare minimum, override at least: * Almost every subclass must, as a bare minimum, override at least:
* <ul> * <ul>
* <li>{@link #registerColumnTypes(TypeContributions, ServiceRegistry)} * <li>{@link #columnType(int)} to define a mapping from SQL
* to define a mapping from SQL {@linkplain SqlTypes type codes} to * {@linkplain SqlTypes type codes} to database column types, and
* database column types, and
* <li>{@link #initializeFunctionRegistry(QueryEngine)} to register * <li>{@link #initializeFunctionRegistry(QueryEngine)} to register
* mappings for standard HQL functions with the * mappings for standard HQL functions with the
* {@link org.hibernate.query.sqm.function.SqmFunctionRegistry}. * {@link org.hibernate.query.sqm.function.SqmFunctionRegistry}.
@ -461,8 +460,8 @@ public abstract class Dialect implements ConversionContext {
* </ol> * </ol>
* *
* @param sqlTypeCode a SQL {@link SqlTypes type code} * @param sqlTypeCode a SQL {@link SqlTypes type code}
* @return a column type name, with $l, $p, $s placeholders for * @return a column type name, with {@code $l}, {@code $p}, {@code $s}
* length, precision, scale * placeholders for length, precision, scale
* *
* @see SqlTypes * @see SqlTypes
*/ */

View File

@ -24,7 +24,7 @@ import org.hibernate.Incubating;
public interface SchemaManager { public interface SchemaManager {
/** /**
* Export database objects mapped by Hibernate entities. * Export database objects mapped by Hibernate entities.
* * <p>
* Programmatic way to run {@link org.hibernate.tool.schema.spi.SchemaCreator}. * Programmatic way to run {@link org.hibernate.tool.schema.spi.SchemaCreator}.
* *
* @param createSchemas if {@code true}, attempt to create schemas, * @param createSchemas if {@code true}, attempt to create schemas,