blob: 3aaec705a1b5956311a6ddd02795140d6a608b75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//ignore
class SynchronizedName {
private Object read = new Object();
private static Object READ = new Object();
@lombok.Synchronized("read") void test1() {
System.out.println("one");
}
@lombok.Synchronized("write") void test2() {
System.out.println("two");
}
@lombok.Synchronized("read") static void test3() {
System.out.println("three");
}
@lombok.Synchronized("READ") void test4() {
System.out.println("four");
}
}
|