File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
spring-core/src/main/java/org/springframework/core Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 30
30
31
31
/**
32
32
* Helper class that encapsulates the specification of a method parameter, i.e.
33
- * a Method or Constructor plus a parameter index and a nested type index for
34
- * a declared generic type. Useful as a specification object to pass along.
33
+ * a {@link Method} or {@link Constructor} plus a parameter index and a nested
34
+ * type index for a declared generic type. Useful as a specification object to
35
+ * pass along.
35
36
*
36
- * <p>As of 4.2, there is a {@link org.springframework.core.annotation.SynthesizingMethodParameter}
37
- * subclass available which synthesizes annotations based on overridden annotation attributes.
38
- * That subclass is being used for web and message endpoint processing, in particular.
37
+ * <p>As of 4.2, there is a {@link org.springframework.core.annotation.SynthesizingMethodParameter
38
+ * SynthesizingMethodParameter} subclass available which synthesizes annotations
39
+ * with attribute aliases. That subclass is used for web and message endpoint
40
+ * processing, in particular.
39
41
*
40
42
* @author Juergen Hoeller
41
43
* @author Rob Harrop
42
44
* @author Andy Clement
43
45
* @author Sam Brannen
44
46
* @since 2.0
45
47
* @see GenericCollectionTypeResolver
48
+ * @see org.springframework.core.annotation.SynthesizingMethodParameter
46
49
*/
47
50
public class MethodParameter {
48
51
Original file line number Diff line number Diff line change 22
22
import org .springframework .core .MethodParameter ;
23
23
24
24
/**
25
- * A {@link MethodParameter} variant which synthesizes annotations
26
- * based on overridden annotation attributes, e.g. as declared with
27
- * {@link AliasFor @AliasFor}.
25
+ * A {@link MethodParameter} variant which synthesizes annotations that
26
+ * declare attribute aliases via {@link AliasFor @AliasFor}.
28
27
*
29
28
* @author Juergen Hoeller
30
29
* @author Sam Brannen
You can’t perform that action at this time.
0 commit comments