Polishing.

Update javadoc.

Original Pull Request: #3334
This commit is contained in:
Christoph Strobl
2024-01-30 08:02:30 +01:00
parent a918f49a29
commit 9a0a99450a

View File

@@ -40,9 +40,11 @@ abstract class EntityGraphFactory {
/**
* Create an {@link EntityGraph} from a collection of properties.
*
* @param entityManager
* @param domainType
* @param properties
* @param entityManager the {@link EntityManager} used to {@link EntityManager#createEntityGraph(String) create} the
* {@link EntityGraph}.
* @param domainType the type to create the {@link EntityGraph} for.
* @param properties the properties to add {@link EntityGraph#addAttributeNodes(String...) nodes} and
* {@link EntityGraph#addSubgraph(String) subgraphs} for.
*/
public static <T> EntityGraph<T> create(EntityManager entityManager, Class<T> domainType, Set<String> properties) {