mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8251203: Fix "no comment" warnings in java.base/java.lang and java/io
Reviewed-by: dfuchs, lancea, mchung, naoto
This commit is contained in:
parent
5585e6f63a
commit
afce1f4ebd
19 changed files with 177 additions and 28 deletions
|
@ -60,13 +60,37 @@ public final class StackTraceElement implements java.io.Serializable {
|
|||
private transient Class<?> declaringClassObject;
|
||||
|
||||
// Normally initialized by VM
|
||||
/**
|
||||
* The name of the class loader.
|
||||
*/
|
||||
private String classLoaderName;
|
||||
/**
|
||||
* The module name.
|
||||
*/
|
||||
private String moduleName;
|
||||
/**
|
||||
* The module version.
|
||||
*/
|
||||
private String moduleVersion;
|
||||
/**
|
||||
* The declaring class.
|
||||
*/
|
||||
private String declaringClass;
|
||||
/**
|
||||
* The method name.
|
||||
*/
|
||||
private String methodName;
|
||||
/**
|
||||
* The source file name.
|
||||
*/
|
||||
private String fileName;
|
||||
/**
|
||||
* The source line number.
|
||||
*/
|
||||
private int lineNumber;
|
||||
/**
|
||||
* Control to show full or partial module, package, and class names.
|
||||
*/
|
||||
private byte format = 0; // Default to show all
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue