comparison org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/StaleEvent.d @ 85:6be48cf9f95c

Work on databinding
author Frank Benoit <benoit@tionex.de>
date Sat, 18 Apr 2009 13:54:50 +0200
parents 383ce7bd736b
children
comparison
equal deleted inserted replaced
84:fcf926c91ca4 85:6be48cf9f95c
43 } 43 }
44 44
45 /** 45 /**
46 * 46 *
47 */ 47 */
48 private static final long serialVersionUID = 3491012225431471077L; 48 private static const long serialVersionUID = 3491012225431471077L;
49 49
50 static final Object TYPE = new Object(); 50 static const Object TYPE;
51 static this(){
52 TYPE = new Object();
53 }
51 54
52 protected void dispatch(IObservablesListener listener) { 55 protected void dispatch(IObservablesListener listener) {
53 (cast(IStaleListener) listener).handleStale(this); 56 (cast(IStaleListener) listener).handleStale(this);
54 } 57 }
55 58