author | naoto |
Tue, 29 Mar 2016 17:06:33 -0700 | |
changeset 36739 | 145210aba850 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
15707 | 1 |
/* |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
15707
diff
changeset
|
2 |
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. |
15707 | 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> |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
15707
diff
changeset
|
28 |
* @modules jdk.compiler/com.sun.tools.doclint |
15707 | 29 |
* @build DocLintTester |
30 |
* @run main DocLintTester -Xmsgs ParaTagTest.java |
|
31 |
*/ |
|
32 |
||
33 |
/** |
|
34 |
* First line. |
|
35 |
* <p> Para c1.</p> |
|
36 |
* <p> Para c2. |
|
37 |
* <p> Para c3.</p> |
|
38 |
*/ |
|
39 |
public class ParaTagTest { |
|
40 |
/** |
|
41 |
* m1 <code>code </code>. |
|
42 |
* <p> Para m1. |
|
43 |
* <p> Para m2. |
|
44 |
*/ |
|
45 |
public void m() {} |
|
46 |
||
47 |
/** |
|
48 |
* m2. |
|
49 |
* <p> Para z1. |
|
50 |
* <p> Para z2. |
|
51 |
* <pre> |
|
52 |
* Preformat 1. |
|
53 |
* </pre> |
|
54 |
*/ |
|
55 |
public void z() {} |
|
56 |
} |