Skip to content

Commit 96aa283

Browse files
committed
javadoc fixes to Transformer interfaces
1 parent a0696fa commit 96aa283

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

hibernate-core/src/main/java/org/hibernate/query/TupleTransformer.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
import java.util.List;
1111

1212
/**
13-
* Defines some transformation applied to each result of a {@link Query}
14-
* before the results are packaged as a {@link List} and returned to the caller. Each result
15-
* is received as a tuple (that is, as an {@code Object[]}), and may be transformed to
16-
* some other type.
13+
* Defines some transformation applied to each result of a {@link Query} before
14+
* the results are packaged as a {@link List} and returned to the caller. Each
15+
* result is received as a tuple (that is, as an {@code Object[]}), and may be
16+
* transformed to some other type.
1717
*
18-
* @implNote Every {@code TupleTransformer} is automatically wrapped in an instance of
19-
* {@link RowTransformerTupleTransformerAdapter}, adapting it to the
20-
* {@link org.hibernate.sql.results.spi.RowTransformer} contract, which is always
21-
* used to actually process the results internally.
18+
* @implNote Every {@code TupleTransformer} is automatically wrapped in an
19+
* instance of {@link RowTransformerTupleTransformerAdapter}, adapting it to
20+
* the {@link org.hibernate.sql.results.spi.RowTransformer} contract, which is
21+
* always used to actually process the results internally.
2222
*
2323
* @see Query#setTupleTransformer
2424
* @see Query#list

hibernate-core/src/main/java/org/hibernate/sql/results/spi/RowTransformer.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
/**
1010
* Defines transformation of a raw row in the domain query result row.
1111
*
12-
* E.g. a query might select multiple
13-
*
1412
* @see org.hibernate.query.TupleTransformer
1513
*
1614
* @author Steve Ebersole

0 commit comments

Comments
 (0)