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);