Skip to content

Commit e069033

Browse files
committed
Polish Javadoc in spring-context-indexer
1 parent 5cbbbed commit e069033

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

spring-context-indexer/src/main/java/org/springframework/context/index/processor/CandidateComponentsIndexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import javax.lang.model.element.TypeElement;
3737

3838
/**
39-
* Annotation {@link Processor} that writes {@link CandidateComponentsMetadata}
39+
* Annotation {@link Processor} that writes a {@link CandidateComponentsMetadata}
4040
* file for spring components.
4141
*
4242
* @author Stephane Nicoll

spring-context-indexer/src/main/java/org/springframework/context/index/processor/IndexedStereotypesProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
/**
2828
* A {@link StereotypesProvider} implementation that extracts the stereotypes
29-
* flagged by the {@value INDEXED_ANNOTATION} annotation. This implementation
29+
* flagged by the {@value #INDEXED_ANNOTATION} annotation. This implementation
3030
* honors stereotypes defined this way on meta-annotations.
3131
*
3232
* @author Stephane Nicoll

spring-context-indexer/src/main/java/org/springframework/context/index/processor/PackageInfoStereotypesProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
/**
2626
* A {@link StereotypesProvider} implementation that provides the
27-
* {@value STEREOTYPE} stereotype for each package-info.
27+
* {@value #STEREOTYPE} stereotype for each package-info.
2828
*
2929
* @author Stephane Nicoll
3030
* @since 5.0

spring-context-indexer/src/main/java/org/springframework/context/index/processor/StandardStereotypesProvider.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,8 +24,8 @@
2424
import javax.lang.model.element.ElementKind;
2525

2626
/**
27-
* A {@link StereotypesProvider} that extract a stereotype for each
28-
* {@code javax.*} annotation placed on a class or interface.
27+
* A {@link StereotypesProvider} that extracts a stereotype for each
28+
* {@code javax.*} annotation <i>present</i> on a class or interface.
2929
*
3030
* @author Stephane Nicoll
3131
* @since 5.0

spring-context-indexer/src/main/java/org/springframework/context/index/processor/StereotypesProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@
2222

2323
/**
2424
* Provide the list of stereotypes that match an {@link Element}.
25-
* If an element has one more stereotypes, it is referenced in the index
25+
* <p>If an element has one or more stereotypes, it is referenced in the index
2626
* of candidate components and each stereotype can be queried individually.
2727
*
2828
* @author Stephane Nicoll

0 commit comments

Comments
 (0)