sclass VarWithNotify extends Var { event fireChange; public void set(A a) { A v = get(); if (v == a) ret; synchronized { v = a; } fireChange(); } }