jjg@1455: /* jjg@1455: * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. jjg@1455: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@1455: * jjg@1455: * This code is free software; you can redistribute it and/or modify it jjg@1455: * under the terms of the GNU General Public License version 2 only, as jjg@1455: * published by the Free Software Foundation. jjg@1455: * jjg@1455: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@1455: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@1455: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@1455: * version 2 for more details (a copy is included in the LICENSE file that jjg@1455: * accompanied this code). jjg@1455: * jjg@1455: * You should have received a copy of the GNU General Public License version jjg@1455: * 2 along with this work; if not, write to the Free Software Foundation, jjg@1455: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@1455: * jjg@1455: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@1455: * or visit www.oracle.com if you need additional information or have any jjg@1455: * questions. jjg@1455: */ jjg@1455: jjg@1455: /* jjg@1455: * @test jjg@1465: * @bug 8004832 jjg@1465: * @summary Add new doclint package jjg@1455: * @build DocLintTester jjg@1455: * @run main DocLintTester ValidTest.java jjg@1455: */ jjg@1455: jjg@1455: class ValidTest { jjg@1455: /** jjg@1455: * < > & ( jjg@1455: */ jjg@1455: void entities() { } jjg@1455: jjg@1455: /** jjg@1455: *

...

jjg@1455: *

...

jjg@1455: *

...

jjg@1455: *

...

jjg@1455: *
...
jjg@1455: *
...
jjg@1455: */ jjg@1455: void all_headers() { } jjg@1455: jjg@1455: /** jjg@1455: *

...

jjg@1455: *

...

jjg@1455: *

...

jjg@1455: *

...

jjg@1455: *

...

jjg@1455: *

...

jjg@1455: *

...

jjg@1455: */ jjg@1455: void header_series() { } jjg@1455: jjg@1455: /** jjg@1455: *

jjg@1455: */ jjg@1455: void autoclose_tags() { } jjg@1455: jjg@1455: /** jjg@1455: * @param x jjg@1455: */ jjg@1455: void method_param(int x) { } jjg@1455: jjg@1455: /** jjg@1455: * @param jjg@1455: */ jjg@1455: T method_typaram(T t) { return t; } jjg@1455: jjg@1455: /** jjg@1455: * @param jjg@1455: */ jjg@1455: class ClassTyparam { } jjg@1455: jjg@1455: /** jjg@1455: * @param jjg@1455: */ jjg@1455: interface InterfaceTyparam { } jjg@1455: jjg@1455: /** jjg@1455: * @return x jjg@1455: */ jjg@1455: int return_int() { return 0; } jjg@1455: jjg@1455: /** jjg@1455: * @exception Exception jjg@1455: */ jjg@1455: void throws_Exception1() throws Exception { } jjg@1455: jjg@1455: /** jjg@1455: * @throws Exception jjg@1455: */ jjg@1455: void throws_Exception2() throws Exception { } jjg@1455: jjg@1455: class X { jjg@1455: /** jjg@1455: * @param x jjg@1455: */ jjg@1455: X(int x) { } // constructor parameter jjg@1455: jjg@1455: /** jjg@1455: * @param jjg@1455: */ jjg@1455: X(T t) { } // constructor type parameter jjg@1455: } jjg@1455: jjg@1455: } jjg@1455: