test/tools/doclint/html/InlineTagsTest.java

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

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

Added tag jdk8u65-b12 for changeset 54e958a3719e

jjg@1507 1 /*
jjg@1507 2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
jjg@1507 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1507 4 *
jjg@1507 5 * This code is free software; you can redistribute it and/or modify it
jjg@1507 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1507 7 * published by the Free Software Foundation.
jjg@1507 8 *
jjg@1507 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1507 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1507 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1507 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1507 13 * accompanied this code).
jjg@1507 14 *
jjg@1507 15 * You should have received a copy of the GNU General Public License version
jjg@1507 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1507 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1507 18 *
jjg@1507 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1507 20 * or visit www.oracle.com if you need additional information or have any
jjg@1507 21 * questions.
jjg@1507 22 */
jjg@1507 23
jjg@1507 24 /*
jjg@1507 25 * @test
jjg@1507 26 * @bug 8006251
jjg@1507 27 * @summary test inline tags
jjg@1507 28 * @library ..
jjg@1507 29 * @build DocLintTester
jjg@1507 30 * @run main DocLintTester -Xmsgs InlineTagsTest.java
jjg@1507 31 */
jjg@1507 32
jjg@1507 33 /** */
jjg@1507 34 public class InlineTagsTest {
jjg@1507 35 /**
jjg@1507 36 * <a href="#abc"> abc </a>
jjg@1507 37 * <b> abc </b>
jjg@1507 38 * <big> abc </big>
jjg@1507 39 * <br>
jjg@1507 40 * <cite> abc </cite>
jjg@1507 41 * <code> abc </code>
jjg@2051 42 * <dfn> abc </dfn>
jjg@1507 43 * <em> abc </em>
jjg@1507 44 * <font> abc </font>
jjg@1507 45 * <i> abc </i>
jjg@1507 46 * <img alt="image" src="image.png">
jjg@1507 47 * <small> abc </small>
jjg@1507 48 * <span> abc </span>
jjg@1507 49 * <strong> abc </strong>
jjg@1507 50 * <sub> abc </sub>
jjg@1507 51 * <sup> abc </sup>
jjg@1507 52 * <tt> abc </tt>
jjg@1507 53 * <u> abc </u>
jjg@1507 54 * <var> abc </var>
jjg@1507 55 */
jjg@1507 56 public void supportedTags() { }
jjg@1507 57 }
jjg@1507 58

mercurial