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

More xpcom/mozilla port
author John Reimer<terminal.node@gmail.com>
date Sun, 10 Aug 2008 22:25:43 -0700
parents 44258e0b6687
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.LocationAdapter; 13 module dwt.browser.LocationAdapter;
12 14
13 import dwt.dwthelper.utils; 15 import dwt.browser.LocationListener;
16 import dwt.browser.LocationEvent;
14 17
15 /** 18 /**
16 * This adapter class provides default implementations for the 19 * This adapter class provides default implementations for the
17 * methods described by the {@link LocationListener} interface. 20 * methods described by the {@link LocationListener} interface.
18 * <p> 21 * <p>
21 * interested in. 24 * interested in.
22 * </p> 25 * </p>
23 * 26 *
24 * @since 3.0 27 * @since 3.0
25 */ 28 */
26 public abstract class LocationAdapter implements LocationListener { 29 public abstract class LocationAdapter : LocationListener {
27 30
28 public void changing(LocationEvent event) { 31 public void changing(LocationEvent event) {
29 } 32 }
30 33
31 public void changed(LocationEvent event) { 34 public void changed(LocationEvent event) {