DATAJPA-1192 - Polish JavaDoc.
Correct @param variable declarations and @link references. Original pull request: #224.
This commit is contained in:
committed by
Oliver Gierke
parent
4431fdd8ac
commit
e9439fa377
@@ -37,9 +37,9 @@ public class JpaCountQueryCreator extends JpaQueryCreator {
|
||||
* Creates a new {@link JpaCountQueryCreator}.
|
||||
*
|
||||
* @param tree
|
||||
* @param domainClass
|
||||
* @param parameters
|
||||
* @param em
|
||||
* @param type
|
||||
* @param builder
|
||||
* @param provider
|
||||
*/
|
||||
public JpaCountQueryCreator(PartTree tree, ReturnedType type, CriteriaBuilder builder,
|
||||
ParameterMetadataProvider provider) {
|
||||
|
||||
@@ -129,7 +129,7 @@ public class JpaQueryCreator extends AbstractQueryCreator<CriteriaQuery<? extend
|
||||
|
||||
/**
|
||||
* Finalizes the given {@link Predicate} and applies the given sort. Delegates to
|
||||
* {@link #complete(Predicate, Sort, CriteriaQuery, CriteriaBuilder)} and hands it the current {@link CriteriaQuery}
|
||||
* {@link #complete(Predicate, Sort, CriteriaQuery, CriteriaBuilder, Root)} and hands it the current {@link CriteriaQuery}
|
||||
* and {@link CriteriaBuilder}.
|
||||
*/
|
||||
@Override
|
||||
@@ -175,7 +175,6 @@ public class JpaQueryCreator extends AbstractQueryCreator<CriteriaQuery<? extend
|
||||
*
|
||||
* @param part
|
||||
* @param root
|
||||
* @param iterator
|
||||
* @return
|
||||
*/
|
||||
private Predicate toPredicate(Part part, Root<?> root) {
|
||||
|
||||
@@ -21,6 +21,7 @@ import javax.persistence.EntityManager;
|
||||
|
||||
import org.springframework.data.jpa.provider.PersistenceProvider;
|
||||
import org.springframework.data.jpa.provider.QueryExtractor;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.data.projection.ProjectionFactory;
|
||||
import org.springframework.data.repository.core.NamedQueries;
|
||||
import org.springframework.data.repository.core.RepositoryMetadata;
|
||||
@@ -59,7 +60,6 @@ public final class JpaQueryLookupStrategy {
|
||||
*
|
||||
* @param em
|
||||
* @param extractor
|
||||
* @param evaluationContextProvider
|
||||
*/
|
||||
public AbstractQueryLookupStrategy(EntityManager em, QueryExtractor extractor) {
|
||||
|
||||
@@ -190,7 +190,6 @@ public final class JpaQueryLookupStrategy {
|
||||
* @param extractor
|
||||
* @param createStrategy
|
||||
* @param lookupStrategy
|
||||
* @param evaluationContextProvider
|
||||
*/
|
||||
public CreateIfNotFoundQueryLookupStrategy(EntityManager em, QueryExtractor extractor,
|
||||
CreateQueryLookupStrategy createStrategy, DeclaredQueryLookupStrategy lookupStrategy) {
|
||||
|
||||
@@ -71,7 +71,7 @@ final class SimpleJpaQuery extends AbstractStringBasedJpaQuery {
|
||||
* Validates the given query for syntactical correctness.
|
||||
*
|
||||
* @param query
|
||||
* @param em
|
||||
* @param errorMessage
|
||||
*/
|
||||
private final void validateQuery(String query, String errorMessage) {
|
||||
|
||||
|
||||
@@ -139,7 +139,7 @@ public class ClasspathScanningPersistenceUnitPostProcessor
|
||||
* an empty {@link Set} in case no {@link ResourceLoader} or mapping file name pattern was configured. Resulting paths
|
||||
* are resource-loadable from the application classpath according to the JPA spec.
|
||||
*
|
||||
* @see javax.persistence.spi.PersistenceUnitInfo.PersistenceUnitInfo#getMappingFileNames()
|
||||
* @see javax.persistence.spi.PersistenceUnitInfo#getMappingFileNames()
|
||||
* @return
|
||||
*/
|
||||
private Set<String> scanForMappingFileLocations() {
|
||||
|
||||
Reference in New Issue
Block a user