ASMRuntimeInvisibleAnnotationspublic class ASMRuntimeInvisibleAnnotations extends RuntimeInvisibleAnnotations implements ASMifiableAn {@link ASMifiable} {@link RuntimeInvisibleAnnotations} sub class. |
Methods Summary |
---|
public void | asmify(java.lang.StringBuffer buf, java.lang.String varName, java.util.Map labelNames)
buf.append("RuntimeInvisibleAnnotations ").append(varName)
.append(" = new RuntimeInvisibleAnnotations();\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)
RuntimeInvisibleAnnotations attr =
(RuntimeInvisibleAnnotations)super.read(
cr, off, len, buf, codeOff, labels);
ASMRuntimeInvisibleAnnotations result = new ASMRuntimeInvisibleAnnotations();
result.annotations = attr.annotations;
return result;
|
|