blob: 7a5900cb23419a7fb26023dd0b4b659e2411cc50 (
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
|
package a.b.c.d;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
// matching lock on transformed static method ( pre J5)
public aspect Sixteen {
public static void main(String[] args) {
Blah.b();
}
before(): !within(Sixteen) && lock() {
System.err.println("Locking occurring at "+thisJoinPoint);
System.err.println(thisJoinPoint.getSourceLocation().getFileName());
}
}
class Blah {
public static synchronized void b() {
System.err.println("hello");
}
}
|