From c0b3b7b81e998f31b8910009e9c7f443e640136a Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 11 Nov 2011 22:28:37 +0000 Subject: [PATCH] Added cross linking in Javadoc for @Autowired, @Qualifier, and @Value. --- .../springframework/beans/factory/annotation/Autowired.java | 1 + .../springframework/beans/factory/annotation/Qualifier.java | 3 ++- .../org/springframework/beans/factory/annotation/Value.java | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Autowired.java b/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Autowired.java index 7bfcce7508..cd450053df 100644 --- a/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Autowired.java +++ b/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Autowired.java @@ -59,6 +59,7 @@ import java.lang.annotation.Target; * @author Mark Fisher * @since 2.5 * @see AutowiredAnnotationBeanPostProcessor + * @see Qualifier * @see Value */ @Retention(RetentionPolicy.RUNTIME) diff --git a/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Qualifier.java b/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Qualifier.java index 17caeacabf..89e8d5fbc9 100644 --- a/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Qualifier.java +++ b/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Qualifier.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2008 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -31,6 +31,7 @@ import java.lang.annotation.Target; * @author Mark Fisher * @author Juergen Hoeller * @since 2.5 + * @see Autowired */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.TYPE, ElementType.ANNOTATION_TYPE}) diff --git a/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Value.java b/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Value.java index 69bed418a3..5b17214a28 100644 --- a/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Value.java +++ b/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/Value.java @@ -43,7 +43,7 @@ import java.lang.annotation.Target; * @author Juergen Hoeller * @since 3.0 * @see AutowiredAnnotationBeanPostProcessor - * @see Value + * @see Autowired * @see org.springframework.beans.factory.config.BeanExpressionResolver * @see org.springframework.beans.factory.support.AutowireCandidateResolver#getSuggestedValue */