Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] weaving in steps

Hi,

I have a java application class (add.java) and three aspects (asp1.aj, asp2.aj and asp3.aj). I want to weave all aspects in to the add class in steps and not all in one step. For example;

Step1: weave asp1 to add class
Step2: weave asp2 to the result class (the weaved class) of  step1.
Step3: weave asp3 to the result class (the weaved class) of step2

In donot want to weave asp1 and asp2 in step 2, and similarly I donot want to weave asp1, asp2 and asp3 in step3. How can  I do that?

Regards
Tauseef

Back to the top