import net.jcip.annotations.GuardedBy; import java.lang.String; class A { @GuardedBy("itself") private String _foo; public String getFoo() { synchronized (_foo) { return _foo; } } public void setFoo(String foo) { _foo = foo; } }