comparison dwt/browser/LocationAdapter.d @ 45:d8635bb48c7c

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents f565d3a95c0a
children 5583f8eeee6c
comparison
equal deleted inserted replaced
44:ca5e494f2bbf 45:d8635bb48c7c
1 /******************************************************************************* 1 /*******************************************************************************
2 * Copyright (c) 2003, 2004 IBM Corporation and others. 2 * Copyright (c) 2003, 2008 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0 4 * are made available under the terms of the Eclipse Public License v1.0
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 * 10 *
11 * Port to the D programming language: 11 * Port to the D programming language:
12 * Jacob Carlborg <jacob.carlborg@gmail.com> 12 * Jacob Carlborg <doob@me.com>
13 *******************************************************************************/ 13 *******************************************************************************/
14 module dwt.browser.LocationAdapter; 14 module dwt.browser.LocationAdapter;
15 15
16 import dwt.browser.LocationListener; 16 import dwt.browser.LocationListener;
17 import dwt.browser.LocationEvent; 17 import dwt.browser.LocationEvent;
24 * Classes that wish to deal with {@link LocationEvent}'s can 24 * Classes that wish to deal with {@link LocationEvent}'s can
25 * extend this class and override only the methods which they are 25 * extend this class and override only the methods which they are
26 * interested in. 26 * interested in.
27 * </p> 27 * </p>
28 * 28 *
29 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
30 *
29 * @since 3.0 31 * @since 3.0
30 */ 32 */
31 public abstract class LocationAdapter : LocationListener { 33 public abstract class LocationAdapter : LocationListener {
32 34
33 public void changing (LocationEvent event) { 35 public void changing(LocationEvent event) {
34 } 36 }
35 37
36 public void changed (LocationEvent event) { 38 public void changed(LocationEvent event) {
37 }
38 } 39 }
40 }