Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] setting local field joinpoints

Hi,
 
Is there a way to capture a pointcut where a local field inside a method is being set. For instance, if I have the following:
 
public void aMethod() {
 
int x = 2;
...
 
}
 
is there a way I can access the point where "x" is being set? It seems the pointcuts "get" and "set" only work for instance variables.
 
thanks.


Do you Yahoo!?
Yahoo! Mail - Helps protect you from nasty viruses.

Back to the top