Example #1
0
 protected void addDirtyProperty(final String property) {
   lock.ifNotModifying(
       new Runnable() {
         public void run() {
           dirtySet.add(property);
           getManagedForm().dirtyStateChanged();
         }
       });
 }