Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] AspectJ PDE export problems

maybe the problem is i have used an annotation for my aspect? this is my
aspect:

package aspects;

public aspect Logging {

	public pointcut thisLog() : execution(@Log * *.*(..));
	
	before() : thisLog() {
		System.out.println("CIAO");
	}
}

how can be the aop.xml?

--
View this message in context: http://aspectj.2085585.n4.nabble.com/AspectJ-PDE-export-problems-tp3387024p3394722.html
Sent from the AspectJ - users mailing list archive at Nabble.com.


Back to the top