langtools/test/tools/javac/doctree/SummaryTest.java
author ksrini
Tue, 15 Aug 2017 13:16:32 -0700
changeset 46184 f1325703ea85
permissions -rw-r--r--
8173425: Javadoc needs a new tag to specify the summary. Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46184
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     1
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     4
 *
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    10
 *
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    15
 * accompanied this code).
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    16
 *
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    20
 *
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    23
 * questions.
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    24
 */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    25
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    26
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    27
 * @test
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    28
 * @bug 8173425
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    29
 * @summary extend com.sun.source API to support parsing javadoc comments
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    30
 * @modules jdk.compiler/com.sun.tools.javac.api
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    31
 *          jdk.compiler/com.sun.tools.javac.file
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    32
 *          jdk.compiler/com.sun.tools.javac.tree
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    33
 *          jdk.compiler/com.sun.tools.javac.util
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    34
 * @build DocCommentTester
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    35
 * @run main DocCommentTester SummaryTest.java
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    36
 */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    37
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    38
class SummaryTest {
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    39
    /**
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    40
     * {@summary} abc.
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    41
     */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    42
    void empty() { }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    43
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    44
DocComment[DOC_COMMENT, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    45
  firstSentence: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    46
    Summary[SUMMARY, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    47
      summary: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    48
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    49
  body: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    50
    Text[TEXT, pos:11, _abc.]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    51
  block tags: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    52
]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    53
*/
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    54
    /**
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    55
     * {@summary abc} def.
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    56
     */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    57
    void simple() { }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    58
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    59
DocComment[DOC_COMMENT, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    60
  firstSentence: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    61
    Summary[SUMMARY, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    62
      summary: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    63
        Text[TEXT, pos:11, abc]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    64
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    65
  body: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    66
    Text[TEXT, pos:15, _def.]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    67
  block tags: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    68
]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    69
*/
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    70
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    71
    /**
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    72
     *    {@summary abc} def
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    73
     */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    74
    void leading_space() { }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    75
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    76
DocComment[DOC_COMMENT, pos:4
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    77
  firstSentence: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    78
    Summary[SUMMARY, pos:4
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    79
      summary: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    80
        Text[TEXT, pos:14, abc]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    81
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    82
  body: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    83
    Text[TEXT, pos:18, _def]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    84
  block tags: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    85
]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    86
*/
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    87
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    88
    /**
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    89
     * <p> {@summary abc} def
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    90
     */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    91
    void leading_html() { }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    92
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    93
DocComment[DOC_COMMENT, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    94
  firstSentence: 3
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    95
    StartElement[START_ELEMENT, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    96
      name:p
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    97
      attributes: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    98
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
    99
    Text[TEXT, pos:4, _]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   100
    Summary[SUMMARY, pos:5
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   101
      summary: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   102
        Text[TEXT, pos:15, abc]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   103
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   104
  body: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   105
    Text[TEXT, pos:19, _def]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   106
  block tags: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   107
]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   108
*/
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   109
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   110
    /**
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   111
     * abc {@summary def} ghi
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   112
     */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   113
    void leading_text() { }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   114
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   115
DocComment[DOC_COMMENT, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   116
  firstSentence: 2
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   117
    Text[TEXT, pos:1, abc_]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   118
    Summary[SUMMARY, pos:5
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   119
      summary: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   120
        Text[TEXT, pos:15, def]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   121
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   122
  body: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   123
    Text[TEXT, pos:19, _ghi]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   124
  block tags: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   125
]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   126
*/
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   127
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   128
    /**
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   129
     * abc. {@summary def} ghi
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   130
     */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   131
    void leading_text_with_break() { }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   132
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   133
DocComment[DOC_COMMENT, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   134
  firstSentence: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   135
    Text[TEXT, pos:1, abc.]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   136
  body: 2
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   137
    Summary[SUMMARY, pos:6
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   138
      summary: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   139
        Text[TEXT, pos:16, def]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   140
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   141
    Text[TEXT, pos:20, _ghi]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   142
  block tags: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   143
]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   144
*/
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   145
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   146
    /**
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   147
     * {@summary def} <p> ghi
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   148
     */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   149
    void trailing_html() { }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   150
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   151
DocComment[DOC_COMMENT, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   152
  firstSentence: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   153
    Summary[SUMMARY, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   154
      summary: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   155
        Text[TEXT, pos:11, def]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   156
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   157
  body: 3
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   158
    Text[TEXT, pos:15, _]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   159
    StartElement[START_ELEMENT, pos:16
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   160
      name:p
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   161
      attributes: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   162
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   163
    Text[TEXT, pos:19, _ghi]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   164
  block tags: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   165
]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   166
*/
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   167
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   168
    /**
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   169
     * {@summary abc &lt;def&gt; ghi} jkl
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   170
     */
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   171
    void with_html() { }
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   172
/*
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   173
DocComment[DOC_COMMENT, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   174
  firstSentence: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   175
    Summary[SUMMARY, pos:1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   176
      summary: 5
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   177
        Text[TEXT, pos:11, abc_]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   178
        Entity[ENTITY, pos:15, lt]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   179
        Text[TEXT, pos:19, def]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   180
        Entity[ENTITY, pos:22, gt]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   181
        Text[TEXT, pos:26, _ghi]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   182
    ]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   183
  body: 1
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   184
    Text[TEXT, pos:31, _jkl]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   185
  block tags: empty
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   186
]
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   187
*/
f1325703ea85 8173425: Javadoc needs a new tag to specify the summary.
ksrini
parents:
diff changeset
   188
}