< prev index next >

test/langtools/lib/annotations/annotations/classfile/ClassfileInspector.java

Print this page
rev 50604 : imported patch jep181-rev1

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -1251,10 +1251,15 @@
         public Void visitLocalVariableTypeTable(LocalVariableTypeTable_attribute attr, T p) {
             return null;
         }
 
         @Override
+          public Void visitNestHost(NestHost_attribute attr, T p) {
+            return null;
+        }
+
+        @Override
         public Void visitMethodParameters(MethodParameters_attribute attr, T p) {
             return null;
         }
 
         @Override

@@ -1286,10 +1291,15 @@
         public Void visitModuleTarget(ModuleTarget_attribute attr, T p) {
             return null;
         }
 
         @Override
+        public Void visitNestMembers(NestMembers_attribute attr, T p) {
+            return null;
+        }
+
+        @Override
         public Void visitRuntimeInvisibleAnnotations(RuntimeInvisibleAnnotations_attribute attr, T p) {
             return null;
         }
 
         @Override
< prev index next >