aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs193/389678/OverWeave_1/src/MyAspect.aj
blob: cb9d42081681ddb95db848606f5bb98a2b0a94ef (plain)
1
2
3
4
5
public aspect MyAspect {
	before() : execution(* Application.*(..)) {
		System.out.println(this.getClass().getName() + " -> " + thisJoinPointStaticPart);
	}
}