comparison org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/Queue.d @ 85:6be48cf9f95c

Work on databinding
author Frank Benoit <benoit@tionex.de>
date Sat, 18 Apr 2009 13:54:50 +0200
parents 0a55d2d5a946
children
comparison
equal deleted inserted replaced
84:fcf926c91ca4 85:6be48cf9f95c
17 * 17 *
18 * @since 1.1 18 * @since 1.1
19 * 19 *
20 */ 20 */
21 public class Queue { 21 public class Queue {
22
23 void notifyAll(){
24 implMissing( __FILE__, __LINE__ );
25 }
26 void wait(){
27 implMissing( __FILE__, __LINE__ );
28 }
22 29
23 static class Entry { 30 static class Entry {
24 Object object; 31 Object object;
25 32
26 this(Object o) { 33 this(Object o) {