< prev index next >

jdk/src/java.base/share/classes/java/lang/StackWalker.java

Print this page

        

*** 79,89 **** * Unless otherwise noted, passing a {@code null} argument to a * constructor or method in this {@code StackWalker} class * will cause a {@link NullPointerException NullPointerException} * to be thrown. * ! * @since 1.9 */ public final class StackWalker { /** * A {@code StackFrame} object represents a method invocation returned by * {@link StackWalker}. --- 79,89 ---- * Unless otherwise noted, passing a {@code null} argument to a * constructor or method in this {@code StackWalker} class * will cause a {@link NullPointerException NullPointerException} * to be thrown. * ! * @since 9 */ public final class StackWalker { /** * A {@code StackFrame} object represents a method invocation returned by * {@link StackWalker}.
*** 90,100 **** * * <p> The {@link #getDeclaringClass()} method may be unsupported as determined * by the {@linkplain Option stack walking options} of a {@linkplain * StackWalker stack walker}. * ! * @since 1.9 * @jvms 2.6 */ public static interface StackFrame { /** * Gets the <a href="ClassLoader.html#name">binary name</a> --- 90,100 ---- * * <p> The {@link #getDeclaringClass()} method may be unsupported as determined * by the {@linkplain Option stack walking options} of a {@linkplain * StackWalker stack walker}. * ! * @since 9 * @jvms 2.6 */ public static interface StackFrame { /** * Gets the <a href="ClassLoader.html#name">binary name</a>
*** 183,193 **** /** * Stack walker option to configure the {@linkplain StackFrame stack frame} * information obtained by a {@code StackWalker}. * ! * @since 1.9 */ public enum Option { /** * Retains {@code Class} object in {@code StackFrame}s * walked by this {@code StackWalker}. --- 183,193 ---- /** * Stack walker option to configure the {@linkplain StackFrame stack frame} * information obtained by a {@code StackWalker}. * ! * @since 9 */ public enum Option { /** * Retains {@code Class} object in {@code StackFrame}s * walked by this {@code StackWalker}.
< prev index next >