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