Package cn.wensiqun.asmsupport.asm.adapter

Examples of cn.wensiqun.asmsupport.asm.adapter.ClassModifierClassAdapter


    // adapts the class on the fly
    try {
      //modify class
      ClassReader cr = new ClassReader(is);
      ClassWriter cw = new ClassWriter(0);
      ClassVisitor cv = new ClassModifierClassAdapter(cw, modifier);
      modifier.setClassWriter(cw);
      cr.accept(cv, 0);
      modifiedClassBytes = cw.toByteArray();
     
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of cn.wensiqun.asmsupport.asm.adapter.ClassModifierClassAdapter

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.