diff --git a/org.springframework.test/src/main/java/org/springframework/test/annotation/IfProfileValue.java b/org.springframework.test/src/main/java/org/springframework/test/annotation/IfProfileValue.java index fc9050b2554..afbf289f688 100644 --- a/org.springframework.test/src/main/java/org/springframework/test/annotation/IfProfileValue.java +++ b/org.springframework.test/src/main/java/org/springframework/test/annotation/IfProfileValue.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2008 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. @@ -31,7 +31,7 @@ import java.lang.annotation.Target; * test will be enabled. *
*
- * Note: {@link IfProfileValue @IfProfileValue} can be applied at either the
+ * Note: @IfProfileValue can be applied at either the
* class or method level.
*
@@ -41,24 +41,24 @@ import java.lang.annotation.Target; *
* *
- * {@link IfProfileValue @IfProfileValue}(name="java.vendor", value="Sun Microsystems Inc.")
- * testSomething() {
+ * @IfProfileValue(name="java.vendor", value="Sun Microsystems Inc.")
+ * public void testSomething() {
* // ...
* }
*
*
*
- * You can alternatively configure {@link IfProfileValue @IfProfileValue} with
+ * You can alternatively configure @IfProfileValue with
* OR semantics for multiple {@link #values() values} as follows
* (assuming a {@link ProfileValueSource} has been appropriately configured for
* the "test-groups" name):
*
- * {@link IfProfileValue @IfProfileValue}(name="test-groups", values={"unit-tests", "integration-tests"})
- * public void testWhichRunsForUnitOrIntegrationTestGroups() {
- * // ...
- * }
+ * @IfProfileValue(name="test-groups", values={"unit-tests", "integration-tests"})
+ * public void testWhichRunsForUnitOrIntegrationTestGroups() {
+ * // ...
+ * }
*
*
* @author Rod Johnson