diff options
Diffstat (limited to 'usage_examples')
-rw-r--r-- | usage_examples/SynchronizedExample_post.jpage | 23 | ||||
-rw-r--r-- | usage_examples/SynchronizedExample_pre.jpage | 20 |
2 files changed, 43 insertions, 0 deletions
diff --git a/usage_examples/SynchronizedExample_post.jpage b/usage_examples/SynchronizedExample_post.jpage new file mode 100644 index 00000000..858bfbde --- /dev/null +++ b/usage_examples/SynchronizedExample_post.jpage @@ -0,0 +1,23 @@ +public class SynchronizedExample { + private static final Object $LOCK = new Object[0]; + private final Object $lock = new Object[0]; + private final Object myLock = new Object(); + + public static void hello() { + synchronized($LOCK) { + System.out.println("world"); + } + } + + public int answerToLife() { + synchronized($lock) { + return 42; + } + } + + public void foo() { + synchronized(myLock) { + System.out.println("bar"); + } + } +} diff --git a/usage_examples/SynchronizedExample_pre.jpage b/usage_examples/SynchronizedExample_pre.jpage new file mode 100644 index 00000000..f1e8afba --- /dev/null +++ b/usage_examples/SynchronizedExample_pre.jpage @@ -0,0 +1,20 @@ +import lombok.Synchronized; + +public class SynchronizedExample { + private final Object myLock = new Object(); + + @Synchronized + public static void hello() { + System.out.println("world"); + } + + @Synchronized + public int answerToLife() { + return 42; + } + + @Synchronized("myLock") + public void foo() { + System.out.println("bar"); + } +} |