comparison dwt/browser/StatusTextListener.d @ 302:bfe1c57259e3

More browser code ported
author John Reimer<terminal.node@gmail.com>
date Tue, 12 Aug 2008 21:11:17 -0700
parents 93409d9838c5
children
comparison
equal deleted inserted replaced
301:d1474e6bb509 302:bfe1c57259e3
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.StatusTextListener; 13 module dwt.browser.StatusTextListener;
12 14
13 import dwt.dwthelper.utils; 15 import dwt.browser.StatusTextEvent;
16 //import dwt.dwthelper.utils;
14 17
15 import dwt.internal.DWTEventListener; 18 import dwt.internal.DWTEventListener;
16 19
17 /** 20 /**
18 * This listener interface may be implemented in order to receive 21 * This listener interface may be implemented in order to receive
22 * @see Browser#addStatusTextListener(StatusTextListener) 25 * @see Browser#addStatusTextListener(StatusTextListener)
23 * @see Browser#removeStatusTextListener(StatusTextListener) 26 * @see Browser#removeStatusTextListener(StatusTextListener)
24 * 27 *
25 * @since 3.0 28 * @since 3.0
26 */ 29 */
27 public interface StatusTextListener extends DWTEventListener { 30 public interface StatusTextListener : DWTEventListener {
28 31
29 /** 32 /**
30 * This method is called when the status text is changed. The 33 * This method is called when the status text is changed. The
31 * status text is typically displayed in the status bar of a browser 34 * status text is typically displayed in the status bar of a browser
32 * application. 35 * application.