From d0a036c53670826f3111466157973889c0a1c30e Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Wed, 17 Feb 2016 15:18:38 +0100 Subject: [PATCH] HHH-10538 Fix the javadoc of TableInformation.getIndex(Identifier indexName) --- .../hibernate/tool/schema/extract/spi/TableInformation.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hibernate-core/src/main/java/org/hibernate/tool/schema/extract/spi/TableInformation.java b/hibernate-core/src/main/java/org/hibernate/tool/schema/extract/spi/TableInformation.java index 817bb2f450..3c62f4b29b 100644 --- a/hibernate-core/src/main/java/org/hibernate/tool/schema/extract/spi/TableInformation.java +++ b/hibernate-core/src/main/java/org/hibernate/tool/schema/extract/spi/TableInformation.java @@ -78,7 +78,11 @@ public interface TableInformation { public Iterable getIndexes(); /** - * Obtain an iterable over all the table's defined indexes + * Retrieve the named IndexInformation + * + * @param indexName The index identifier (simple name) + * + * @return The matching index information. May return {@code null} */ public IndexInformation getIndex(Identifier indexName); }