comparison dwt/browser/ProgressListener.d @ 298:eec6ddb07873

More xpcom/mozilla port
author John Reimer<terminal.node@gmail.com>
date Sun, 10 Aug 2008 22:25:43 -0700
parents 93409d9838c5
children
comparison
equal deleted inserted replaced
297:2f204a4aebc6 298:eec6ddb07873
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.ProgressListener; 13 module dwt.browser.ProgressListener;
12 14
13 import dwt.dwthelper.utils; 15 import dwt.browser.ProgressEvent;
14
15 import dwt.internal.DWTEventListener; 16 import dwt.internal.DWTEventListener;
16 17
17 /** 18 /**
18 * This listener interface may be implemented in order to receive 19 * This listener interface may be implemented in order to receive
19 * a {@link ProgressEvent} notification when a {@link Browser} 20 * a {@link ProgressEvent} notification when a {@link Browser}
24 * @see Browser#removeProgressListener(ProgressListener) 25 * @see Browser#removeProgressListener(ProgressListener)
25 * @see Browser#getUrl() 26 * @see Browser#getUrl()
26 * 27 *
27 * @since 3.0 28 * @since 3.0
28 */ 29 */
29 public interface ProgressListener extends DWTEventListener { 30 public interface ProgressListener : DWTEventListener {
30 31
31 /** 32 /**
32 * This method is called when a progress is made during the loading of the 33 * This method is called when a progress is made during the loading of the
33 * current location. 34 * current location.
34 * <p> 35 * <p>