Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » Field set pointcut
Field set pointcut [message #51137] Tue, 26 April 2005 02:17
Roman Kishchenko is currently offline Roman KishchenkoFriend
Messages: 6
Registered: July 2009
Junior Member
I have a simple "hello world" type pointcut/advice for intercepting the
field setting.

pointcut changeVal(int n): set(public static int Test1.i) && args(n);

before(int i): changeValue(i) {
System.out.println("XXX");
}

It does not seem to get invoked even though AJDT plug-in in Eclipse does
seem to correctly pick it up and display in Cross References view, etc.
I am using M6 versions of Eclipse and AJDT plug-in. Anybody else seeing
this?

Thanks,
C.
Previous Topic:Reopening a bug?
Next Topic:Field set pointcut
Goto Forum:
  


Current Time: Fri Apr 19 14:33:30 GMT 2024

Powered by FUDForum. Page generated in 0.01546 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top