langtools/test/tools/doclint/ParaTagTest.java
changeset 15707 7b2411328a5c
child 30730 d3ce7619db2c
equal deleted inserted replaced
15706:37a81a6987ac 15707:7b2411328a5c
       
     1 /*
       
     2  * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.
       
     8  *
       
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12  * version 2 for more details (a copy is included in the LICENSE file that
       
    13  * accompanied this code).
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License version
       
    16  * 2 along with this work; if not, write to the Free Software Foundation,
       
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18  *
       
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20  * or visit www.oracle.com if you need additional information or have any
       
    21  * questions.
       
    22  */
       
    23 
       
    24 /*
       
    25  * @test
       
    26  * @bug 8007566
       
    27  * @summary DocLint too aggressive with not allowed here: <p>
       
    28  * @build DocLintTester
       
    29  * @run main DocLintTester -Xmsgs ParaTagTest.java
       
    30  */
       
    31 
       
    32 /**
       
    33  * First line.
       
    34  * <p> Para c1.</p>
       
    35  * <p> Para c2.
       
    36  * <p> Para c3.</p>
       
    37  */
       
    38 public class ParaTagTest {
       
    39     /**
       
    40      * m1 <code>code </code>.
       
    41      * <p> Para m1.
       
    42      * <p> Para m2.
       
    43      */
       
    44     public void m() {}
       
    45 
       
    46     /**
       
    47      * m2.
       
    48      * <p> Para z1.
       
    49      * <p> Para z2.
       
    50      * <pre>
       
    51      *    Preformat 1.
       
    52      * </pre>
       
    53      */
       
    54     public void z() {}
       
    55 }