fix links to deprecated annotation in jdoc

This commit is contained in:
Gavin King 2023-06-16 13:57:31 +02:00
parent 8b86cb1cdf
commit 715212c694
2 changed files with 4 additions and 4 deletions

View File

@ -22,14 +22,14 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
* <ul> * <ul>
* <li>Use {@link SortNatural} to sort by {@linkplain java.util.Comparator natural order}. * <li>Use {@link SortNatural} to sort by {@linkplain java.util.Comparator natural order}.
* <li>Use {@link jakarta.persistence.OrderBy} to order using an expression written in HQL. * <li>Use {@link jakarta.persistence.OrderBy} to order using an expression written in HQL.
* <li>Use {@link OrderBy} to order using an expression written in native SQL. * <li>Use {@link SQLOrder} to order using an expression written in native SQL.
* </ul> * </ul>
* <p> * <p>
* It is illegal to use both {@code SortComparator} and {@link SortNatural}. * It is illegal to use both {@code SortComparator} and {@link SortNatural}.
* *
* @see SortComparator * @see SortComparator
* @see jakarta.persistence.OrderBy * @see jakarta.persistence.OrderBy
* @see OrderBy * @see SQLOrder
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */

View File

@ -21,14 +21,14 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
* <ul> * <ul>
* <li>Use {@link SortComparator} to sort the collection in memory using a {@link java.util.Comparator}. * <li>Use {@link SortComparator} to sort the collection in memory using a {@link java.util.Comparator}.
* <li>Use {@link jakarta.persistence.OrderBy} to order using an expression written in HQL. * <li>Use {@link jakarta.persistence.OrderBy} to order using an expression written in HQL.
* <li>Use {@link OrderBy} to order using an expression written in native SQL. * <li>Use {@link SQLOrder} to order using an expression written in native SQL.
* </ul> * </ul>
* <p> * <p>
* It is illegal to use both {@code SortNatural} and {@link SortComparator}. * It is illegal to use both {@code SortNatural} and {@link SortComparator}.
* *
* @see SortComparator * @see SortComparator
* @see jakarta.persistence.OrderBy * @see jakarta.persistence.OrderBy
* @see OrderBy * @see SQLOrder
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */