Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] AspectJ Limits

:: public aspect TestAspect {
:: 
:: 	pointcut whenDoRun() : call(void Test.run(..));
:: 	
:: 	void after() : whenDoRun() {

didn't you mean around() here instead of after?

but it brings up the question, does proceed() compile in the body of
after()?

:: 		System.err.println("BEFORE");
:: 		proceed();
:: 		System.err.println("AFTER");
:: 	}
:: }

- 101


Back to the top