From 6c3dd342fec0c496d831407ff958d8c24e7599c7 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 27 Apr 2009 22:49:34 +0000 Subject: [PATCH] Updated JavaDoc for @TestExecutionListeners. git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1068 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../test/context/TestExecutionListeners.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/org.springframework.test/src/main/java/org/springframework/test/context/TestExecutionListeners.java b/org.springframework.test/src/main/java/org/springframework/test/context/TestExecutionListeners.java index 2e739cf3b0d..390a509876f 100644 --- a/org.springframework.test/src/main/java/org/springframework/test/context/TestExecutionListeners.java +++ b/org.springframework.test/src/main/java/org/springframework/test/context/TestExecutionListeners.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2007 the original author or authors. + * Copyright 2002-2009 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. @@ -24,11 +24,11 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * TestExecutionListeners defines class-level metadata for configuring which - * {@link TestExecutionListener TestExecutionListeners} should be registered - * with a {@link TestContextManager}. Typically, - * {@link TestExecutionListeners @TestExecutionListeners} will be used in - * conjunction with {@link ContextConfiguration @ContextConfiguration}. + * TestExecutionListeners defines class-level metadata for + * configuring which {@link TestExecutionListener TestExecutionListeners} should + * be registered with a {@link TestContextManager}. Typically, + * @TestExecutionListeners will be used in conjunction with + * {@link ContextConfiguration @ContextConfiguration}. * * @author Sam Brannen * @since 2.5 @@ -75,14 +75,14 @@ public @interface TestExecutionListeners { *

* *
-	 * {@link TestExecutionListeners @TestExecutionListeners}({ DependencyInjectionTestExecutionListener.class,
+	 * @TestExecutionListeners({ DependencyInjectionTestExecutionListener.class,
 	 *     DirtiesContextTestExecutionListener.class })
 	 * public abstract class AbstractBaseTest {
 	 *     // ...
 	 * }
 	 *
-	 * {@link TestExecutionListeners @TestExecutionListeners}({ TransactionalTestExecutionListener.class })
-	 * public class TransactionalTest extends BaseTest {
+	 * @TestExecutionListeners(TransactionalTestExecutionListener.class)
+	 * public class TransactionalTest extends AbstractBaseTest {
 	 *     // ...
 	 * }
 	 *