Package oracle.toplink.libraries.asm.attrs

Examples of oracle.toplink.libraries.asm.attrs.LocalVariableTypeTableAttribute


  extends LocalVariableTypeTableAttribute
  implements ASMifiable
{

  protected Attribute read( ClassReader cr, int off, int len, char[] buf, int codeOff, Label[] labels) {
    LocalVariableTypeTableAttribute attr = ( LocalVariableTypeTableAttribute) super.read(cr, off, len, buf, codeOff, labels);

    ASMLocalVariableTypeTableAttribute res = new ASMLocalVariableTypeTableAttribute();
    res.getTypes().addAll( attr.getTypes());
    return res;
  }
View Full Code Here

TOP

Related Classes of oracle.toplink.libraries.asm.attrs.LocalVariableTypeTableAttribute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.