aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR133117/base/Tracing.aj
blob: 625f197f69bce3f0df47db36a604655e32607b44 (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
public aspect Tracing {

    pointcut publicMethods() : execution(public * *(..));

    before() : publicMethods() {
        System.out.println("Entering "+thisJoinPoint);
    }

}

class MainClass {

	
	public static void main(String[] args) {
		
	}
	
	public String toString() {
		return super.toString();
	}
	
	
	public int hashCode() {
		return super.hashCode();
	}
	
}