test/tools/doclint/ValidTest.java

Mon, 31 Aug 2015 13:37:01 -0700

author
asaha
date
Mon, 31 Aug 2015 13:37:01 -0700
changeset 2971
153d0309e698
parent 1465
a22f23fb7abf
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8u65-b12 for changeset 54e958a3719e

jjg@1455 1 /*
jjg@1455 2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
jjg@1455 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1455 4 *
jjg@1455 5 * This code is free software; you can redistribute it and/or modify it
jjg@1455 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1455 7 * published by the Free Software Foundation.
jjg@1455 8 *
jjg@1455 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1455 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1455 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1455 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1455 13 * accompanied this code).
jjg@1455 14 *
jjg@1455 15 * You should have received a copy of the GNU General Public License version
jjg@1455 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1455 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1455 18 *
jjg@1455 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1455 20 * or visit www.oracle.com if you need additional information or have any
jjg@1455 21 * questions.
jjg@1455 22 */
jjg@1455 23
jjg@1455 24 /*
jjg@1455 25 * @test
jjg@1465 26 * @bug 8004832
jjg@1465 27 * @summary Add new doclint package
jjg@1455 28 * @build DocLintTester
jjg@1455 29 * @run main DocLintTester ValidTest.java
jjg@1455 30 */
jjg@1455 31
jjg@1455 32 class ValidTest {
jjg@1455 33 /**
jjg@1455 34 * < > & (
jjg@1455 35 */
jjg@1455 36 void entities() { }
jjg@1455 37
jjg@1455 38 /**
jjg@1455 39 * <h1> ... </h1>
jjg@1455 40 * <h2> ... </h2>
jjg@1455 41 * <h3> ... </h3>
jjg@1455 42 * <h4> ... </h4>
jjg@1455 43 * <h5> ... </h5>
jjg@1455 44 * <h6> ... </h6>
jjg@1455 45 */
jjg@1455 46 void all_headers() { }
jjg@1455 47
jjg@1455 48 /**
jjg@1455 49 * <h1> ... </h1>
jjg@1455 50 * <h2> ... </h2>
jjg@1455 51 * <h3> ... </h3>
jjg@1455 52 * <h1> ... </h1>
jjg@1455 53 * <h2> ... </h2>
jjg@1455 54 * <h3> ... </h3>
jjg@1455 55 * <h2> ... </h2>
jjg@1455 56 */
jjg@1455 57 void header_series() { }
jjg@1455 58
jjg@1455 59 /**
jjg@1455 60 * <div> <p> </div>
jjg@1455 61 */
jjg@1455 62 void autoclose_tags() { }
jjg@1455 63
jjg@1455 64 /**
jjg@1455 65 * @param x
jjg@1455 66 */
jjg@1455 67 void method_param(int x) { }
jjg@1455 68
jjg@1455 69 /**
jjg@1455 70 * @param <T>
jjg@1455 71 */
jjg@1455 72 <T> T method_typaram(T t) { return t; }
jjg@1455 73
jjg@1455 74 /**
jjg@1455 75 * @param <T>
jjg@1455 76 */
jjg@1455 77 class ClassTyparam<T> { }
jjg@1455 78
jjg@1455 79 /**
jjg@1455 80 * @param <T>
jjg@1455 81 */
jjg@1455 82 interface InterfaceTyparam<T> { }
jjg@1455 83
jjg@1455 84 /**
jjg@1455 85 * @return x
jjg@1455 86 */
jjg@1455 87 int return_int() { return 0; }
jjg@1455 88
jjg@1455 89 /**
jjg@1455 90 * @exception Exception
jjg@1455 91 */
jjg@1455 92 void throws_Exception1() throws Exception { }
jjg@1455 93
jjg@1455 94 /**
jjg@1455 95 * @throws Exception
jjg@1455 96 */
jjg@1455 97 void throws_Exception2() throws Exception { }
jjg@1455 98
jjg@1455 99 class X {
jjg@1455 100 /**
jjg@1455 101 * @param x
jjg@1455 102 */
jjg@1455 103 X(int x) { } // constructor parameter
jjg@1455 104
jjg@1455 105 /**
jjg@1455 106 * @param <T>
jjg@1455 107 */
jjg@1455 108 <T> X(T t) { } // constructor type parameter
jjg@1455 109 }
jjg@1455 110
jjg@1455 111 }
jjg@1455 112

mercurial