8251203: Fix "no comment" warnings in java.base/java.lang and java/io

Reviewed-by: dfuchs, lancea, mchung, naoto
This commit is contained in:
Roger Riggs 2020-08-25 10:20:14 -04:00
parent 5585e6f63a
commit afce1f4ebd
19 changed files with 177 additions and 28 deletions

View file

@ -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
/**