< prev index next >

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

Print this page

        

@@ -79,11 +79,11 @@
  * 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
+ * @since 9
  */
 public final class StackWalker {
     /**
      * A {@code StackFrame} object represents a method invocation returned by
      * {@link StackWalker}.

@@ -90,11 +90,11 @@
      *
      * <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
+     * @since 9
      * @jvms 2.6
      */
     public static interface StackFrame {
         /**
          * Gets the <a href="ClassLoader.html#name">binary name</a>

@@ -183,11 +183,11 @@
 
     /**
      * Stack walker option to configure the {@linkplain StackFrame stack frame}
      * information obtained by a {@code StackWalker}.
      *
-     * @since 1.9
+     * @since 9
      */
     public enum Option {
         /**
          * Retains {@code Class} object in {@code StackFrame}s
          * walked by this {@code StackWalker}.
< prev index next >