blob: 5d0741133e64fa0371345dbb4628bd59d77361f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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");
}
@lombok.Synchronized(value="read") void test5() {
System.out.println("five");
}
}
|