| RE: [aspectj-users] Problems with cflow in eclipse |
|
There isn’t such an annotation. One
approach that you might try is to put your advice inside a static inner aspect,
so you have the ability to turn off visualizing just that advice, e.g., aspect Container { static aspect NoMark { before() : pcd() { action(); } } … } From: aspectj-users-bounces@xxxxxxxxxxx
[mailto:aspectj-users-bounces@xxxxxxxxxxx] On
Behalf Of Manuel Menezes de Sequeira Hi Eric, @NoMarks Is there something of this kind which I am not aware
of? That's what it does right now. But since there *could*
be everything |