File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
org.springframework.test/src/main/java/org/springframework/test/annotation Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2008 the original author or authors.
2
+ * Copyright 2002-2009 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
31
31
* test will be enabled.
32
32
* </p>
33
33
* <p>
34
- * Note: {@link IfProfileValue @IfProfileValue} can be applied at either the
34
+ * Note: <code>@ IfProfileValue</code> can be applied at either the
35
35
* class or method level.
36
36
* </p>
37
37
* <p>
41
41
* </p>
42
42
*
43
43
* <pre class="code">
44
- * {@link IfProfileValue @IfProfileValue} (name="java.vendor", value="Sun Microsystems Inc.")
45
- * testSomething() {
44
+ * @ IfProfileValue(name="java.vendor", value="Sun Microsystems Inc.")
45
+ * public void testSomething() {
46
46
* // ...
47
47
* }
48
48
* </pre>
49
49
*
50
50
* <p>
51
- * You can alternatively configure {@link IfProfileValue @IfProfileValue} with
51
+ * You can alternatively configure <code>@ IfProfileValue</code> with
52
52
* <em>OR</em> semantics for multiple {@link #values() values} as follows
53
53
* (assuming a {@link ProfileValueSource} has been appropriately configured for
54
54
* the "test-groups" name):
55
55
* </p>
56
56
*
57
57
* <pre class="code">
58
- * {@link IfProfileValue @IfProfileValue} (name="test-groups", values={"unit-tests", "integration-tests"})
59
- * public void testWhichRunsForUnitOrIntegrationTestGroups() {
60
- * // ...
61
- * }
58
+ * @ IfProfileValue(name="test-groups", values={"unit-tests", "integration-tests"})
59
+ * public void testWhichRunsForUnitOrIntegrationTestGroups() {
60
+ * // ...
61
+ * }
62
62
* </pre>
63
63
*
64
64
* @author Rod Johnson
You can’t perform that action at this time.
0 commit comments