aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/src/test/java/org/aspectj/weaver/testcode/Aspect.java
blob: 95140c7922a689d59384e7efd4252868c8e02a4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.aspectj.weaver.testcode;

public class Aspect {

	public static void ignoreMe() {
	}

	public static void before_method_call() {
		System.out.println("before");
	}

	public static void afterReturning_method_call() {
		System.out.println("afterReturning");
	}

	public static void afterThrowing_method_execution(Throwable t) {
		System.out.println("afterThrowing " + t);
		t.printStackTrace();
	}

}