comparison org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/snippets/Snippet012CompositeUpdater.d @ 100:e884642ad36e

more work on examples
author Frank Benoit <benoit@tionex.de>
date Thu, 23 Apr 2009 00:02:38 +0200
parents 5d5bd660917f
children
comparison
equal deleted inserted replaced
99:5d5bd660917f 100:e884642ad36e
87 display.dispose(); 87 display.dispose();
88 } 88 }
89 89
90 static Timer timer = new Timer(true); 90 static Timer timer = new Timer(true);
91 91
92 static class Counter extends WritableValue { 92 static class Counter : WritableValue {
93 Counter() { 93 Counter() {
94 super(new Integer(0), Integer.class); 94 super(new Integer(0), Integer.class);
95 scheduleIncrementTask(); 95 scheduleIncrementTask();
96 } 96 }
97 97