FileDocCategorySizeDatePackage
ASMRuntimeVisibleAnnotations.javaAPI DocGlassfish v2 API2828Thu Mar 02 11:51:20 GMT 2006oracle.toplink.libraries.asm.util.attrs

ASMRuntimeVisibleAnnotations

public class ASMRuntimeVisibleAnnotations extends RuntimeVisibleAnnotations implements ASMifiable
An {@link ASMifiable} {@link RuntimeVisibleAnnotations} sub class.
author
Eugene Kuleshov

Fields Summary
Constructors Summary
Methods Summary
public voidasmify(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.Attributeread(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;