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