Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] Re: Differentiating between similar join points

> 3. I've never tried this but probably you can use 
> @annotations to distinguish the two calls.
> 	@firstcall A.withdraw();
> 	A.deposit();
> 	@secondCall A.withdraw();

No, this is not going to work. Unfortunately you cannot tag statements
in Java.

Eric

--
Eric Bodden
Sable Research Group, McGill University
Montreal, Canada
http://bodden.de


Back to the top