Example usage for org.aspectj.weaver.bcel BcelWeaver BcelWeaver

List of usage examples for org.aspectj.weaver.bcel BcelWeaver BcelWeaver

Introduction

In this page you can find the example usage for org.aspectj.weaver.bcel BcelWeaver BcelWeaver.

Prototype

public BcelWeaver(BcelWorld world) 

Source Link

Usage

From source file:info.rubico.mock4aj.weavers.aspectj.DynamicRuntimeWeavingAdaptor.java

License:Open Source License

protected void initWeaver() {
    weaver = new BcelWeaver(bcelWorld);

    // Yes... true = *not*!
    final boolean notReweavable = true; // NOPMD
    weaver.setReweavableMode(notReweavable);

    weaver.prepareForWeave();/* ww w.  j a va 2 s. c  o  m*/
}