< prev index next >

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

Print this page
rev 50604 : imported patch jep181-rev1

*** 1,7 **** /* ! * Copyright (c) 2012, 2015, 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. --- 1,7 ---- /* ! * 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,1260 **** --- 1251,1265 ---- 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,1295 **** --- 1291,1305 ---- 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 >