From d6aec2552e1400da20cb2080c4239641c29074a2 Mon Sep 17 00:00:00 2001
From: Sam Brannen
- * 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