use of xmlkit.XMLKit.Element in project jdk8u_jdk by JetBrains.
the class AnnotationsElementVisitor method visitRuntimeInvisibleAnnotations.
@Override
public Element visitRuntimeInvisibleAnnotations(RuntimeInvisibleAnnotations_attribute ria, Element p) {
Element e = new Element(x.getCpString(ria.attribute_name_index));
parseAnnotations(ria.annotations, e);
e.trimToSize();
p.add(e);
return null;
}
use of xmlkit.XMLKit.Element in project jdk8u_jdk by JetBrains.
the class AnnotationsElementVisitor method visit_append_frame.
@Override
public Element visit_append_frame(append_frame a, Void p) {
Element e = new Element("AppendFrame" + (a.frame_type - 251));
e.setAttr("tag", "" + a.frame_type);
e.addAll(getVerificationTypeInfo("Local", a.locals));
e.trimToSize();
return e;
}
Aggregations