[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[aspectj-users] No WEAVEINFO messages for cflow pointcuts!
|
- From: Heiko Seeberger <heiko.seeberger@xxxxxxxxxxxxx>
- Date: Mon, 11 Jun 2007 09:14:28 +0200
- Delivered-to: aspectj-users@eclipse.org
- User-agent: Thunderbird 1.5.0.12 (Windows/20070509)
Hi,
I am using AJEER (http://ajeer.sourceforge.net/) which is a
load-time-weaving enabler for the eclipse Runtime. AJEER itself relies
on the AspectJ LTW API.
When using pointcuts with cflow(...) I run into serious trouble, because
AJEER relies on WEAVEINFO messages which seem only to be generated for
certain "interesting" pointcuts.
See org.aspectj.weaver.Shadow.reportWeavingMessage(...):
// Only report on interesting advice kinds ...
...
if (!( aKind.equals(AdviceKind.Before) ||
aKind.equals(AdviceKind.After) ||
aKind.equals(AdviceKind.AfterReturning) ||
aKind.equals(AdviceKind.AfterThrowing) ||
aKind.equals(AdviceKind.Around) ||
aKind.equals(AdviceKind.Softener))) return;
I kindly request help form the AJ gurus for that:
Why are cflow pointcuts not interesting?
Is there a chance to fix this?
Regards,
Heiko