author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 53562 | 0d9dee001667 |
permissions | -rw-r--r-- |
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
1 |
/* |
53562 | 2 |
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. |
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
4 |
* |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
8 |
* |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
13 |
* accompanied this code). |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
14 |
* |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
18 |
* |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
21 |
* questions. |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
22 |
*/ |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
23 |
|
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
24 |
/* |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
25 |
* @test |
49139
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
26 |
* @bug 8005092 6469562 8182765 |
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
27 |
* @summary Test repeated annotations output. |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
28 |
* @author bpatel |
53097 | 29 |
* @library ../../lib |
36526 | 30 |
* @modules jdk.javadoc/jdk.javadoc.internal.tool |
53097 | 31 |
* @build javadoc.tester.* |
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
32 |
* @run main TestRepeatedAnnotations |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
33 |
*/ |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
34 |
|
53097 | 35 |
import javadoc.tester.JavadocTester; |
36 |
||
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
37 |
public class TestRepeatedAnnotations extends JavadocTester { |
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
38 |
|
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
39 |
public static void main(String... args) throws Exception { |
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
40 |
TestRepeatedAnnotations tester = new TestRepeatedAnnotations(); |
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
41 |
tester.runTests(); |
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
42 |
} |
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
43 |
|
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
44 |
@Test |
53097 | 45 |
public void test() { |
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
46 |
javadoc("-d", "out", |
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
47 |
"-sourcepath", testSrc, |
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
48 |
"pkg", "pkg1"); |
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
49 |
checkExit(Exit.OK); |
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
50 |
|
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
51 |
checkOutput("pkg/C.html", true, |
48654
36f58bd6269f
8195796: Reduce the size of relative URLs in generated docs
jjg
parents:
47216
diff
changeset
|
52 |
"<a href=\"ContaineeSynthDoc.html\" " |
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
53 |
+ "title=\"annotation in pkg\">@ContaineeSynthDoc</a> " |
48654
36f58bd6269f
8195796: Reduce the size of relative URLs in generated docs
jjg
parents:
47216
diff
changeset
|
54 |
+ "<a href=\"ContaineeSynthDoc.html\" " |
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
55 |
+ "title=\"annotation in pkg\">@ContaineeSynthDoc</a>", |
48654
36f58bd6269f
8195796: Reduce the size of relative URLs in generated docs
jjg
parents:
47216
diff
changeset
|
56 |
"<a href=\"ContaineeRegDoc.html\" " |
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
57 |
+ "title=\"annotation in pkg\">@ContaineeRegDoc</a> " |
48654
36f58bd6269f
8195796: Reduce the size of relative URLs in generated docs
jjg
parents:
47216
diff
changeset
|
58 |
+ "<a href=\"ContaineeRegDoc.html\" " |
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
59 |
+ "title=\"annotation in pkg\">@ContaineeRegDoc</a>", |
48654
36f58bd6269f
8195796: Reduce the size of relative URLs in generated docs
jjg
parents:
47216
diff
changeset
|
60 |
"<a href=\"RegContainerDoc.html\" " |
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
61 |
+ "title=\"annotation in pkg\">@RegContainerDoc</a>" |
36038
39c5445924b9
6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents:
35426
diff
changeset
|
62 |
+ "({" |
48654
36f58bd6269f
8195796: Reduce the size of relative URLs in generated docs
jjg
parents:
47216
diff
changeset
|
63 |
+ "<a href=\"RegContaineeNotDoc.html\" " |
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
64 |
+ "title=\"annotation in pkg\">@RegContaineeNotDoc</a>," |
48654
36f58bd6269f
8195796: Reduce the size of relative URLs in generated docs
jjg
parents:
47216
diff
changeset
|
65 |
+ "<a href=\"RegContaineeNotDoc.html\" " |
44287
829205b133d4
8175219: javadoc should exit when it encounters compilation errors.
ksrini
parents:
36526
diff
changeset
|
66 |
+ "title=\"annotation in pkg\">@RegContaineeNotDoc</a>})"); |
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
67 |
|
24399
af1a0220d0fa
8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents:
24072
diff
changeset
|
68 |
checkOutput("pkg/D.html", true, |
48654
36f58bd6269f
8195796: Reduce the size of relative URLs in generated docs
jjg
parents:
47216
diff
changeset
|
69 |
"<a href=\"RegDoc.html\" title=\"annotation in pkg\">@RegDoc</a>" |
49139
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
70 |
+ "(<a href=\"RegDoc.html#x()\">x</a>=1)", |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
71 |
"<a href=\"RegArryDoc.html\" title=\"annotation in pkg\">@RegArryDoc</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
72 |
+ "(<a href=\"RegArryDoc.html#y()\">y</a>=1)", |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
73 |
"<a href=\"RegArryDoc.html\" title=\"annotation in pkg\">@RegArryDoc</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
74 |
+ "(<a href=\"RegArryDoc.html#y()\">y</a>={1,2})", |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
75 |
"<a href=\"NonSynthDocContainer.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
76 |
+ "title=\"annotation in pkg\">@NonSynthDocContainer</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
77 |
+ "(" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
78 |
+ "<a href=\"RegArryDoc.html\" title=\"annotation in pkg\">@RegArryDoc</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
79 |
+ "(<a href=\"RegArryDoc.html#y()\">y</a>=1))"); |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
80 |
|
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
81 |
checkOutput("pkg1/C.html", true, |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
82 |
"<a href=\"RegContainerValDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
83 |
+ "title=\"annotation in pkg1\">@RegContainerValDoc</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
84 |
+ "(<a href=\"RegContainerValDoc.html#value()\">value</a>={" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
85 |
+ "<a href=\"RegContaineeNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
86 |
+ "title=\"annotation in pkg1\">@RegContaineeNotDoc</a>," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
87 |
+ "<a href=\"RegContaineeNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
88 |
+ "title=\"annotation in pkg1\">@RegContaineeNotDoc</a>}," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
89 |
+ "<a href=\"RegContainerValDoc.html#y()\">y</a>=3)", |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
90 |
"<a href=\"ContainerValDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
91 |
+ "title=\"annotation in pkg1\">@ContainerValDoc</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
92 |
+ "(<a href=\"ContainerValDoc.html#value()\">value</a>={" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
93 |
+ "<a href=\"ContaineeNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
94 |
+ "title=\"annotation in pkg1\">@ContaineeNotDoc</a>," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
95 |
+ "<a href=\"ContaineeNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
96 |
+ "title=\"annotation in pkg1\">@ContaineeNotDoc</a>}," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
97 |
+ "<a href=\"ContainerValDoc.html#x()\">x</a>=1)"); |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
98 |
|
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
99 |
checkOutput("pkg/C.html", false, |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
100 |
"<a href=\"RegContaineeDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
101 |
+ "title=\"annotation in pkg\">@RegContaineeDoc</a> " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
102 |
+ "<a href=\"RegContaineeDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
103 |
+ "title=\"annotation in pkg\">@RegContaineeDoc</a>", |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
104 |
"<a href=\"RegContainerNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
105 |
+ "title=\"annotation in pkg\">@RegContainerNotDoc</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
106 |
+ "(<a href=\"RegContainerNotDoc.html#value()\">value</a>={" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
107 |
+ "<a href=\"RegContaineeNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
108 |
+ "title=\"annotation in pkg\">@RegContaineeNotDoc</a>," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
109 |
+ "<a href=\"RegContaineeNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
110 |
+ "title=\"annotation in pkg\">@RegContaineeNotDoc</a>})"); |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
111 |
|
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
112 |
checkOutput("pkg1/C.html", false, |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
113 |
"<a href=\"ContaineeSynthDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
114 |
+ "title=\"annotation in pkg1\">@ContaineeSynthDoc</a> " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
115 |
+ "<a href=\"ContaineeSynthDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
116 |
+ "title=\"annotation in pkg1\">@ContaineeSynthDoc</a>", |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
117 |
"<a href=\"RegContainerValNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
118 |
+ "title=\"annotation in pkg1\">@RegContainerValNotDoc</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
119 |
+ "(<a href=\"RegContainerValNotDoc.html#value()\">value</a>={" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
120 |
+ "<a href=\"RegContaineeDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
121 |
+ "title=\"annotation in pkg1\">@RegContaineeDoc</a>," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
122 |
+ "<a href=\"RegContaineeDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
123 |
+ "title=\"annotation in pkg1\">@RegContaineeDoc</a>}," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
124 |
+ "<a href=\"RegContainerValNotDoc.html#y()\">y</a>=4)", |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
125 |
"<a href=\"ContainerValNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
126 |
+ "title=\"annotation in pkg1\">@ContainerValNotDoc</a>" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
127 |
+ "(<a href=\"ContainerValNotDoc.html#value()\">value</a>={" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
128 |
+ "<a href=\"ContaineeNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
129 |
+ "title=\"annotation in pkg1\">@ContaineeNotDoc</a>," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
130 |
+ "<a href=\"ContaineeNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
131 |
+ "title=\"annotation in pkg1\">@ContaineeNotDoc</a>}," |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
132 |
+ "<a href=\"ContainerValNotDoc.html#x()\">x</a>=2)", |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
133 |
"<a href=\"ContainerSynthNotDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
134 |
+ "title=\"annotation in pkg1\">@ContainerSynthNotDoc</a>(" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
135 |
+ "<a href=\"ContainerSynthNotDoc.html#value()\">value</a>=" |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
136 |
+ "<a href=\"ContaineeSynthDoc.html\" " |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
137 |
+ "title=\"annotation in pkg1\">@ContaineeSynthDoc</a>)"); |
771616d26ca1
8182765: HTML5 must be the default javadoc codegen mode in the near future
bpatel
parents:
48654
diff
changeset
|
138 |
} |
15035
d03c311f44e6
8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff
changeset
|
139 |
} |