comparison dwt/browser/StatusTextListener.d @ 278:93409d9838c5

Commit more browser/xpcom updates, including still uncoverted source.
author John Reimer<terminal.node@gmail.com>
date Thu, 31 Jul 2008 19:17:51 -0700
parents
children bfe1c57259e3
comparison
equal deleted inserted replaced
277:687f261028b8 278:93409d9838c5
1 /*******************************************************************************
2 * Copyright (c) 2003, 2005 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 module dwt.browser.StatusTextListener;
12
13 import dwt.dwthelper.utils;
14
15 import dwt.internal.DWTEventListener;
16
17 /**
18 * This listener interface may be implemented in order to receive
19 * a {@link StatusTextEvent} notification when the status text for
20 * a {@link Browser} is changed.
21 *
22 * @see Browser#addStatusTextListener(StatusTextListener)
23 * @see Browser#removeStatusTextListener(StatusTextListener)
24 *
25 * @since 3.0
26 */
27 public interface StatusTextListener extends DWTEventListener {
28
29 /**
30 * This method is called when the status text is changed. The
31 * status text is typically displayed in the status bar of a browser
32 * application.
33 * <p>
34 *
35 * <p>The following fields in the <code>StatusTextEvent</code> apply:
36 * <ul>
37 * <li>(in) text the modified status text
38 * <li>(in) widget the <code>Browser</code> whose status text is changed
39 * </ul>
40 *
41 * @param event the <code>StatusTextEvent</code> that contains the updated
42 * status description of a <code>Browser</code>
43 *
44 * @since 3.0
45 */
46 public void changed(StatusTextEvent event);
47 }