< prev index next >

test/jdk/tools/pack200/pack200-verifier/src/xmlkit/ClassReader.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2010, 2017, 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. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2010, 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. Oracle designates this
*** 83,92 **** --- 83,94 ---- import com.sun.tools.classfile.ModuleHashes_attribute.Entry; import com.sun.tools.classfile.ModuleMainClass_attribute; import com.sun.tools.classfile.ModuleResolution_attribute; import com.sun.tools.classfile.ModuleTarget_attribute; import com.sun.tools.classfile.ModulePackages_attribute; + import com.sun.tools.classfile.NestHost_attribute; + import com.sun.tools.classfile.NestMembers_attribute; import com.sun.tools.classfile.Opcode; import com.sun.tools.classfile.RuntimeInvisibleAnnotations_attribute; import com.sun.tools.classfile.RuntimeInvisibleParameterAnnotations_attribute; import com.sun.tools.classfile.RuntimeInvisibleTypeAnnotations_attribute; import com.sun.tools.classfile.RuntimeVisibleAnnotations_attribute;
*** 1564,1573 **** --- 1566,1599 ---- e.add(x.getCpString(attr.target_platform_index)); e.trimToSize(); p.add(e); return null; } + + @Override + public Element visitNestHost(NestHost_attribute attr, Element p) { + String aname = x.getCpString(attr.attribute_name_index); + String hname = x.getCpString(attr.top_index); + Element se = new Element(aname); + se.add(hname); + se.trimToSize(); + p.add(se); + return null; + } + + @Override + public Element visitNestMembers(NestMembers_attribute attr, Element p) { + Element ee = new Element(x.getCpString(attr.attribute_name_index)); + for (int idx : attr.members_indexes) { + Element n = new Element("Item"); + n.setAttr("class", x.getCpString(idx)); + ee.add(n); + } + ee.trimToSize(); + p.add(ee); + return null; + } } class StackMapVisitor implements StackMapTable_attribute.stack_map_frame.Visitor<Element, Void> { final ClassFile cf;
< prev index next >