8249687: Use inline @jls and @jvm tages in more places in java.base

Reviewed-by: bpb, mchung, mikael
This commit is contained in:
Joe Darcy 2020-07-17 17:27:31 -07:00
parent d1d17200c5
commit b7c307c019
17 changed files with 40 additions and 40 deletions

View file

@ -153,8 +153,8 @@ public final class StackTraceElement implements java.io.Serializable {
* Returns the name of the source file containing the execution point
* represented by this stack trace element. Generally, this corresponds
* to the {@code SourceFile} attribute of the relevant {@code class}
* file (as per <i>The Java Virtual Machine Specification</i>, Section
* 4.7.7). In some systems, the name may refer to some source code unit
* file (as per <cite>The Java Virtual Machine Specification</cite>, Section
* {@jvms 4.7.7}). In some systems, the name may refer to some source code unit
* other than a file, such as an entry in source repository.
*
* @return the name of the file containing the execution point
@ -169,8 +169,8 @@ public final class StackTraceElement implements java.io.Serializable {
* Returns the line number of the source line containing the execution
* point represented by this stack trace element. Generally, this is
* derived from the {@code LineNumberTable} attribute of the relevant
* {@code class} file (as per <i>The Java Virtual Machine
* Specification</i>, Section 4.7.8).
* {@code class} file (as per <cite>The Java Virtual Machine
* Specification</cite>, Section {@jvms 4.7.8}).
*
* @return the line number of the source line containing the execution
* point represented by this stack trace element, or a negative
@ -242,8 +242,8 @@ public final class StackTraceElement implements java.io.Serializable {
* represented by this stack trace element. If the execution point is
* contained in an instance or class initializer, this method will return
* the appropriate <i>special method name</i>, {@code <init>} or
* {@code <clinit>}, as per Section 3.9 of <i>The Java Virtual
* Machine Specification</i>.
* {@code <clinit>}, as per Section {@jvms 3.9} of <cite>The Java Virtual
* Machine Specification</cite>.
*
* @return the name of the method containing the execution point
* represented by this stack trace element.