< prev index next >

src/jdk.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/Stable.java

Print this page

        

*** 21,35 **** * questions. */ package jdk.vm.ci.hotspot; ! import java.lang.annotation.*; /** ! * This annotation functions as an alias for the sun.invoke.Stable annotation within JVMCI code. It ! * is specially recognized during class file parsing in the same way as that annotation. */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Stable { } --- 21,38 ---- * questions. */ package jdk.vm.ci.hotspot; ! import java.lang.annotation.ElementType; ! import java.lang.annotation.Retention; ! import java.lang.annotation.RetentionPolicy; ! import java.lang.annotation.Target; /** ! * This annotation functions as an alias for the java.lang.invoke.Stable annotation within JVMCI ! * code. It is specially recognized during class file parsing in the same way as that annotation. */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Stable { }
< prev index next >