Synchronization - Example
public class LinkedCell {
protected double value_; // mutable
protected LinkedCell next_; // immutable
public LinkedCell(double v, LinkedCell t) {
public synchronized double value() {
public synchronized void setValue(double v) {