From b00a6ccea55675c9eb8d9c765ea971f58da27a92 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 20 Jun 2011 14:33:08 +0000 Subject: [PATCH] [SPR-8386] polishing JavaDoc. --- .../test/context/ContextConfigurationAttributes.java | 2 +- .../org/springframework/test/context/SmartContextLoader.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/org.springframework.test/src/main/java/org/springframework/test/context/ContextConfigurationAttributes.java b/org.springframework.test/src/main/java/org/springframework/test/context/ContextConfigurationAttributes.java index b089366738..f27322e6ed 100644 --- a/org.springframework.test/src/main/java/org/springframework/test/context/ContextConfigurationAttributes.java +++ b/org.springframework.test/src/main/java/org/springframework/test/context/ContextConfigurationAttributes.java @@ -29,7 +29,7 @@ import org.springframework.util.ObjectUtils; * @author Sam Brannen * @since 3.1 * @see ContextConfiguration - * @see SmartContextLoader + * @see SmartContextLoader#processContextConfiguration(ContextConfigurationAttributes) * @see MergedContextConfiguration */ public class ContextConfigurationAttributes { diff --git a/org.springframework.test/src/main/java/org/springframework/test/context/SmartContextLoader.java b/org.springframework.test/src/main/java/org/springframework/test/context/SmartContextLoader.java index 292def6f86..683a200d54 100644 --- a/org.springframework.test/src/main/java/org/springframework/test/context/SmartContextLoader.java +++ b/org.springframework.test/src/main/java/org/springframework/test/context/SmartContextLoader.java @@ -73,7 +73,7 @@ public interface SmartContextLoader extends ContextLoader { * preemptively verify that a generated default actually exists. * @return true if this SmartContextLoader * generates default configuration locations or classes - * @see #processContextConfiguration + * @see #processContextConfiguration(ContextConfigurationAttributes) */ boolean generatesDefaults(); @@ -91,7 +91,7 @@ public interface SmartContextLoader extends ContextLoader { * locations or classes property empty signals that * this SmartContextLoader was not able to generate defaults. * @param configAttributes the context configuration attributes to process - * @see #generatesDefaults + * @see #generatesDefaults() */ void processContextConfiguration(ContextConfigurationAttributes configAttributes);