Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] newbi question regarding advice

Hi,
Aspectj has advice such as before() and after() which run before and after the 
execution of a method. 

But which advice do I need to use if I want to do something DURING the 
execution of a method.

So for instance when the following method is called, I want to print 'String 
name' using aspect advice.

public void printName(String name){}

regards



Back to the top