summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr149322/Aspect1.aj
blob: 13788d27bd5efcfcdefe2c1fd06730536b217a93 (plain)
1
2
3
4
5
6
public aspect Aspect1 {

	before () : call(public * interfaceMethod(..)) && target(Interface) {
		System.out.println("Aspect1.before() " + thisJoinPoint.getSignature().getName());
	}
}