Package oracle.toplink.libraries.asm.attrs

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


{

  protected Attribute read (ClassReader cr, int off,
    int len, char[] buf, int codeOff, Label[] labels)
  {
    SourceDebugExtensionAttribute attr =
      (SourceDebugExtensionAttribute)super.read(cr, off, len, buf, codeOff, labels);
   
    ASMSourceDebugExtensionAttribute result = new ASMSourceDebugExtensionAttribute();
    result.debugExtension = attr.debugExtension;
    return result;
View Full Code Here

TOP

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

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.