comparison dwt/browser/CloseWindowListener.d @ 286:44258e0b6687

More fixes for xpcom
author John Reimer<terminal.node@gmail.com>
date Tue, 05 Aug 2008 10:11:58 -0700
parents 93409d9838c5
children 3f4a5c7d138f
comparison
equal deleted inserted replaced
280:e72345914350 286:44258e0b6687
5 * which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html 6 * http://www.eclipse.org/legal/epl-v10.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * John Reimer <terminal.node@gmail.com>
10 *******************************************************************************/ 12 *******************************************************************************/
11 module dwt.browser.CloseWindowListener; 13 module dwt.browser.CloseWindowListener;
12
13 import dwt.dwthelper.utils;
14 14
15 import dwt.internal.DWTEventListener; 15 import dwt.internal.DWTEventListener;
16 16
17 /** 17 /**
18 * This listener interface may be implemented in order to receive 18 * This listener interface may be implemented in order to receive
45 * 45 *
46 * @see dwt.widgets.Shell#close() 46 * @see dwt.widgets.Shell#close()
47 * 47 *
48 * @since 3.0 48 * @since 3.0
49 */ 49 */
50 public void close(WindowEvent event); 50 public void close(WindowEvent event);
51 } 51 }