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

ASMSourceDebugExtensionAttribute

public class ASMSourceDebugExtensionAttribute extends SourceDebugExtensionAttribute implements ASMifiable
An {@link ASMifiable} {@link SourceDebugExtensionAttribute} 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("SourceDebugExtensionAttribute ").append(varName)
      .append(" = new SourceDebugExtensionAttribute(\"")
      .append(debugExtension).append("\");\n");
  
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)

    SourceDebugExtensionAttribute attr = 
      (SourceDebugExtensionAttribute)super.read(cr, off, len, buf, codeOff, labels);
    
    ASMSourceDebugExtensionAttribute result = new ASMSourceDebugExtensionAttribute();
    result.debugExtension = attr.debugExtension;
    return result;