Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Refactoring with pointcuts...

I was trying to find all locations in my code that
called a method nodeSelected(Node).  To do this I just
used...

	declare error : 
		call(void *.nodeSelected(Node))
		: "Refactoring problem!";


But when I needed to find all classes that declared a
method like..

public void nodeSelected(Node node){
}

I had no idea how to modify the "declare error" above.

Can anyone give me a clue?

Thanks,
Eyon



		
__________________________________ 
Do you Yahoo!? 
Read only the mail you want - Yahoo! Mail SpamGuard. 
http://promotions.yahoo.com/new_mail 


Back to the top