langtools/test/jdk/javadoc/doclet/testRepeatedAnnotations/TestRepeatedAnnotations.java
author darcy
Mon, 15 Feb 2016 17:17:58 -0800
changeset 36038 39c5445924b9
parent 35426 374342e56a56
child 36526 3b41f1c69604
permissions -rw-r--r--
6469561: javadoc for annotation types should not display "public abstract" modifiers on methods 6469562: Use compact notation to display annotation values Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
     1
/*
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 24399
diff changeset
     2
 * Copyright (c) 2012, 2015, 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
36038
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
    26
 * @bug      8005092 6469562
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
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    29
 * @library  ../lib
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 24399
diff changeset
    30
 * @modules jdk.javadoc
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    31
 * @build    JavadocTester
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
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
    35
public class TestRepeatedAnnotations extends JavadocTester {
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
    36
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    37
    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
    38
        TestRepeatedAnnotations tester = new TestRepeatedAnnotations();
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    39
        tester.runTests();
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    40
    }
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
    41
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    42
    @Test
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    43
    void test() {
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    44
        javadoc("-d", "out",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    45
                "-sourcepath", testSrc,
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    46
                "pkg", "pkg1");
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    47
        checkExit(Exit.OK);
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
    48
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    49
        checkOutput("pkg/C.html", true,
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    50
                "<a href=\"../pkg/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    51
                + "title=\"annotation in pkg\">@ContaineeSynthDoc</a> "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    52
                + "<a href=\"../pkg/ContaineeSynthDoc.html\" "
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>",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    54
                "<a href=\"../pkg/ContaineeRegDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    55
                + "title=\"annotation in pkg\">@ContaineeRegDoc</a> "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    56
                + "<a href=\"../pkg/ContaineeRegDoc.html\" "
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>",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    58
                "<a href=\"../pkg/RegContainerDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    59
                + "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
    60
                + "({"
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    61
                + "<a href=\"../pkg/RegContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    62
                + "title=\"annotation in pkg\">@RegContaineeNotDoc</a>,"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    63
                + "<a href=\"../pkg/RegContaineeNotDoc.html\" "
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>})",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    65
                "<a href=\"../pkg/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    66
                + "title=\"annotation in pkg\">@ContaineeSynthDoc</a> "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    67
                + "<a href=\"../pkg/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    68
                + "title=\"annotation in pkg\">@ContaineeSynthDoc</a> "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    69
                + "<a href=\"../pkg/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    70
                + "title=\"annotation in pkg\">@ContaineeSynthDoc</a>",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    71
                "<a href=\"../pkg/ContainerSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    72
                + "title=\"annotation in pkg\">@ContainerSynthDoc</a>("
36038
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
    73
                + ""
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    74
                + "<a href=\"../pkg/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    75
                + "title=\"annotation in pkg\">@ContaineeSynthDoc</a>)",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    76
                "<a href=\"../pkg/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    77
                + "title=\"annotation in pkg\">@ContaineeSynthDoc</a> "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    78
                + "<a href=\"../pkg/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    79
                + "title=\"annotation in pkg\">@ContaineeSynthDoc</a>");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
    80
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    81
        checkOutput("pkg/D.html", true,
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    82
                "<a href=\"../pkg/RegDoc.html\" title=\"annotation in pkg\">@RegDoc</a>"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    83
                + "(<a href=\"../pkg/RegDoc.html#x--\">x</a>=1)",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    84
                "<a href=\"../pkg/RegArryDoc.html\" title=\"annotation in pkg\">@RegArryDoc</a>"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    85
                + "(<a href=\"../pkg/RegArryDoc.html#y--\">y</a>=1)",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    86
                "<a href=\"../pkg/RegArryDoc.html\" title=\"annotation in pkg\">@RegArryDoc</a>"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    87
                + "(<a href=\"../pkg/RegArryDoc.html#y--\">y</a>={1,2})",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    88
                "<a href=\"../pkg/NonSynthDocContainer.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    89
                + "title=\"annotation in pkg\">@NonSynthDocContainer</a>"
36038
39c5445924b9 6469561: javadoc for annotation types should not display "public abstract" modifiers on methods
darcy
parents: 35426
diff changeset
    90
                + "("
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    91
                + "<a href=\"../pkg/RegArryDoc.html\" title=\"annotation in pkg\">@RegArryDoc</a>)");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
    92
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    93
        checkOutput("pkg1/C.html", true,
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    94
                "<a href=\"../pkg1/RegContainerValDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    95
                + "title=\"annotation in pkg1\">@RegContainerValDoc</a>"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    96
                + "(<a href=\"../pkg1/RegContainerValDoc.html#value--\">value</a>={"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    97
                + "<a href=\"../pkg1/RegContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    98
                + "title=\"annotation in pkg1\">@RegContaineeNotDoc</a>,"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    99
                + "<a href=\"../pkg1/RegContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   100
                + "title=\"annotation in pkg1\">@RegContaineeNotDoc</a>},"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   101
                + "<a href=\"../pkg1/RegContainerValDoc.html#y--\">y</a>=3)",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   102
                "<a href=\"../pkg1/ContainerValDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   103
                + "title=\"annotation in pkg1\">@ContainerValDoc</a>"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   104
                + "(<a href=\"../pkg1/ContainerValDoc.html#value--\">value</a>={"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   105
                + "<a href=\"../pkg1/ContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   106
                + "title=\"annotation in pkg1\">@ContaineeNotDoc</a>,"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   107
                + "<a href=\"../pkg1/ContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   108
                + "title=\"annotation in pkg1\">@ContaineeNotDoc</a>},"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   109
                + "<a href=\"../pkg1/ContainerValDoc.html#x--\">x</a>=1)");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
   110
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   111
        checkOutput("pkg/C.html", false,
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   112
                "<a href=\"../pkg/RegContaineeDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   113
                + "title=\"annotation in pkg\">@RegContaineeDoc</a> "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   114
                + "<a href=\"../pkg/RegContaineeDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   115
                + "title=\"annotation in pkg\">@RegContaineeDoc</a>",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   116
                "<a href=\"../pkg/RegContainerNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   117
                + "title=\"annotation in pkg\">@RegContainerNotDoc</a>"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   118
                + "(<a href=\"../pkg/RegContainerNotDoc.html#value--\">value</a>={"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   119
                + "<a href=\"../pkg/RegContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   120
                + "title=\"annotation in pkg\">@RegContaineeNotDoc</a>,"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   121
                + "<a href=\"../pkg/RegContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   122
                + "title=\"annotation in pkg\">@RegContaineeNotDoc</a>})");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
   123
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   124
        checkOutput("pkg1/C.html", false,
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   125
                "<a href=\"../pkg1/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   126
                + "title=\"annotation in pkg1\">@ContaineeSynthDoc</a> "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   127
                + "<a href=\"../pkg1/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   128
                + "title=\"annotation in pkg1\">@ContaineeSynthDoc</a>",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   129
                "<a href=\"../pkg1/RegContainerValNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   130
                + "title=\"annotation in pkg1\">@RegContainerValNotDoc</a>"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   131
                + "(<a href=\"../pkg1/RegContainerValNotDoc.html#value--\">value</a>={"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   132
                + "<a href=\"../pkg1/RegContaineeDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   133
                + "title=\"annotation in pkg1\">@RegContaineeDoc</a>,"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   134
                + "<a href=\"../pkg1/RegContaineeDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   135
                + "title=\"annotation in pkg1\">@RegContaineeDoc</a>},"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   136
                + "<a href=\"../pkg1/RegContainerValNotDoc.html#y--\">y</a>=4)",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   137
                "<a href=\"../pkg1/ContainerValNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   138
                + "title=\"annotation in pkg1\">@ContainerValNotDoc</a>"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   139
                + "(<a href=\"../pkg1/ContainerValNotDoc.html#value--\">value</a>={"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   140
                + "<a href=\"../pkg1/ContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   141
                + "title=\"annotation in pkg1\">@ContaineeNotDoc</a>,"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   142
                + "<a href=\"../pkg1/ContaineeNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   143
                + "title=\"annotation in pkg1\">@ContaineeNotDoc</a>},"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   144
                + "<a href=\"../pkg1/ContainerValNotDoc.html#x--\">x</a>=2)",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   145
                "<a href=\"../pkg1/ContainerSynthNotDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   146
                + "title=\"annotation in pkg1\">@ContainerSynthNotDoc</a>("
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   147
                + "<a href=\"../pkg1/ContainerSynthNotDoc.html#value--\">value</a>="
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   148
                + "<a href=\"../pkg1/ContaineeSynthDoc.html\" "
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
   149
                + "title=\"annotation in pkg1\">@ContaineeSynthDoc</a>)");
15035
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
   150
    }
d03c311f44e6 8005092: javadoc should check for synthesized bit on an annotation
bpatel
parents:
diff changeset
   151
}