aboutsummaryrefslogtreecommitdiffstats
path: root/tests/jsrc/Trace.java
blob: 13f36d61de0754b516b61d2220ccc423a8eccd96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import java.io.Serializable;

abstract aspect Trace {
    abstract pointcut targets();

    before (): targets() {
	System.out.println("entering " + thisJoinPoint);
    }
    after (): targets() {
	System.out.println("exiting "  +
			   thisStaticJoinPoint);
    }

    after () throwing (Throwable t): targets() {
	System.out.println("throwing "  + t);
    }

    after () throwing (java.io.IOException ioe): targets() {
	System.out.println("throwing "  + ioe);
    }

    after () returning (Object o): targets() {
	System.out.println("returning "  + o);
    }


    private static int initCounter() {
	return 0;
    }

    //private int Serializable.counter = initCounter();
}