ASMRuntimeVisibleAnnotationspublic class ASMRuntimeVisibleAnnotations extends RuntimeVisibleAnnotations implements ASMifiableAn {@link ASMifiable} {@link RuntimeVisibleAnnotations} sub class. |
Methods Summary |
---|
public void | asmify(java.lang.StringBuffer buf, java.lang.String varName, java.util.Map labelNames)
buf.append("RuntimeVisibleAnnotations ").append(varName)
.append(" = new RuntimeVisibleAnnotations();\n");
ASMAnnotationDefaultAttribute.asmifyAnnotations(buf, varName, annotations);
| protected oracle.toplink.libraries.asm.Attribute | read(oracle.toplink.libraries.asm.ClassReader cr, int off, int len, char[] buf, int codeOff, oracle.toplink.libraries.asm.Label[] labels)
RuntimeVisibleAnnotations attr =
(RuntimeVisibleAnnotations)super.read(
cr, off, len, buf, codeOff, labels);
ASMRuntimeVisibleAnnotations result = new ASMRuntimeVisibleAnnotations();
result.annotations = attr.annotations;
return result;
|
|