Added text for the Synchronized annotation to the features pages. Also did some fixes in regards to whitespacing (some fancy footwork in regards to white-space: pre).

This commit is contained in:
Reinier Zwitserloot
2009-07-18 02:28:29 +02:00
parent 1e369a3aa4
commit bc35f73ae8
5 changed files with 113 additions and 7 deletions
@@ -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");
}
}