Skip to main content

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

Hi All,

Given the following three calls:

public void transfer(..) {
//some code
A.withdraw(..);
A.deposit(..);
A.withdraw(..);
//some code
}

How do I pick out the first and last call join points separately?

Thanks.

Devon.




Back to the top