< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Target.java

Print this page

        

@@ -149,11 +149,18 @@
      */
     public String multiReleaseValue() {
         return Integer.toString(this.ordinal() - Target.JDK1_1.ordinal() + 1);
     }
 
-    /** Does the target VM support nestmates?
+    /** Does the target VM support nestmate access?
      */
-    public boolean hasNestmates() {
+    public boolean hasNestmateAccess() {
         return compareTo(JDK1_10) >= 0;
     }
+
+    /** Does the target VM support virtual private invocations?
+     */
+    public boolean hasVirtualPrivateInvoke() {
+        return compareTo(JDK1_10) >= 0;
+    }
+
 }
< prev index next >