Browse Source

DATACMNS-779 - Fixed JavaDoc in QuerydslPredicateBuilder.

Added JavaDoc to the constructor of QuerydslPredicateBuilder.
pull/151/head
Oliver Gierke 10 years ago
parent
commit
c81b37cee1
  1. 7
      src/main/java/org/springframework/data/querydsl/binding/QuerydslPredicateBuilder.java

7
src/main/java/org/springframework/data/querydsl/binding/QuerydslPredicateBuilder.java

@ -57,6 +57,13 @@ public class QuerydslPredicateBuilder { @@ -57,6 +57,13 @@ public class QuerydslPredicateBuilder {
private final Map<PropertyPath, Path<?>> paths;
private final EntityPathResolver resolver;
/**
* Creates a new {@link QuerydslPredicateBuilder} for the given {@link ConversionService} and
* {@link EntityPathResolver}.
*
* @param conversionService must not be {@literal null}.
* @param resolver can be {@literal null}.
*/
public QuerydslPredicateBuilder(ConversionService conversionService, EntityPathResolver resolver) {
Assert.notNull(conversionService, "ConversionService must not be null!");

Loading…
Cancel
Save