langtools/test/com/sun/javadoc/testParamTaglet/TestParamTaglet.java
changeset 1787 1aa079321cd2
parent 10 06bc494ca11e
child 2216 b124d5c924eb
equal deleted inserted replaced
1753:d4c11dcedac3 1787:1aa079321cd2
    46 
    46 
    47     //Input for string search tests.
    47     //Input for string search tests.
    48     private static final String[][] TEST = {
    48     private static final String[][] TEST = {
    49         //Regular param tags.
    49         //Regular param tags.
    50         {BUG_ID + FS + "pkg" + FS + "C.html",
    50         {BUG_ID + FS + "pkg" + FS + "C.html",
    51             "<B>Parameters:</B><DD><CODE>param1</CODE> - testing 1 2 3." +
    51             "<STRONG>Parameters:</STRONG><DD><CODE>param1</CODE> - testing 1 2 3." +
    52                 "<DD><CODE>param2</CODE> - testing 1 2 3."
    52                 "<DD><CODE>param2</CODE> - testing 1 2 3."
    53         },
    53         },
    54         //Param tags that don't match with any real parameters.
    54         //Param tags that don't match with any real parameters.
    55         {BUG_ID + FS + "pkg" + FS + "C.html",
    55         {BUG_ID + FS + "pkg" + FS + "C.html",
    56             "<B>Parameters:</B><DD><CODE><I>p1</I></CODE> - testing 1 2 3." +
    56             "<STRONG>Parameters:</STRONG><DD><CODE><I>p1</I></CODE> - testing 1 2 3." +
    57                 "<DD><CODE><I>p2</I></CODE> - testing 1 2 3."
    57                 "<DD><CODE><I>p2</I></CODE> - testing 1 2 3."
    58         },
    58         },
    59         //{@inherit} doc misuse does not cause doclet to throw exception.
    59         //{@inherit} doc misuse does not cause doclet to throw exception.
    60         // Param is printed with nothing inherited.
    60         // Param is printed with nothing inherited.
    61         //XXX: in the future when Configuration is available during doc inheritence,
    61         //XXX: in the future when Configuration is available during doc inheritence,