File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments