KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > rcp > notification > NotificationListenerSWTThreadSync


1 /*
2  * Created on Apr 19, 2005
3  */

4 package com.nightlabs.rcp.notification;
5
6 import com.nightlabs.notification.NotificationListener;
7
8 /**
9  * Notification will be done on the SWT GUI thread and the caller thread (which executes
10  * the {@link com.nightlabs.notification.NotificationManager#notify(NotificationEvent)}
11  * method) will wait for it. This is done by
12  * {@link org.eclipse.swt.widgets.Display#syncExec(java.lang.Runnable)}.
13  *
14  * @author Marco Schulze - marco at nightlabs dot de
15  */

16 public interface NotificationListenerSWTThreadSync extends NotificationListener
17 {
18
19 }
20
Popular Tags