From 3fa3fcac403ab5da26e7f937d5d5d94a2a0d4c8b Mon Sep 17 00:00:00 2001 From: Thomas Risberg Date: Wed, 29 Apr 2009 21:12:45 +0000 Subject: [PATCH] fixed JavaDoc git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1075 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../springframework/context/annotation/Configuration.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/org.springframework.context/src/main/java/org/springframework/context/annotation/Configuration.java b/org.springframework.context/src/main/java/org/springframework/context/annotation/Configuration.java index 3faf9c4920f..2ff17705416 100644 --- a/org.springframework.context/src/main/java/org/springframework/context/annotation/Configuration.java +++ b/org.springframework.context/src/main/java/org/springframework/context/annotation/Configuration.java @@ -33,8 +33,9 @@ import org.springframework.stereotype.Component; * *

Configuration is meta-annotated as a {@link Component}, therefore Configuration * classes are candidates for component-scanning and may also take advantage of - * {@link Autowired} at the field, method and constructor level. Externalized values - * may be wired into Configuration classes using the {@link Value} annotation. + * {@link Autowired} at the field and method but not at the constructor level. + * Externalized values may be wired into Configuration classes using the {@link Value} + * annotation. * *

May be used in conjunction with the {@link Lazy} annotation to indicate that all Bean * methods declared within this class are by default lazily initialized.