Skip to content

Commit 9a0a994

Browse files
Polishing.
Update javadoc. Original Pull Request: #3334
1 parent a918f49 commit 9a0a994

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/EntityGraphFactory.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ abstract class EntityGraphFactory {
4040
/**
4141
* Create an {@link EntityGraph} from a collection of properties.
4242
*
43-
* @param entityManager
44-
* @param domainType
45-
* @param properties
43+
* @param entityManager the {@link EntityManager} used to {@link EntityManager#createEntityGraph(String) create} the
44+
* {@link EntityGraph}.
45+
* @param domainType the type to create the {@link EntityGraph} for.
46+
* @param properties the properties to add {@link EntityGraph#addAttributeNodes(String...) nodes} and
47+
* {@link EntityGraph#addSubgraph(String) subgraphs} for.
4648
*/
4749
public static <T> EntityGraph<T> create(EntityManager entityManager, Class<T> domainType, Set<String> properties) {
4850

0 commit comments

Comments
 (0)