comparison dwt/internal/DWTEventListener.d @ 2:57151e2793a2

More common modules from dwt-linux
author Frank Benoit <benoit@tionex.de>
date Wed, 23 Jan 2008 12:01:46 +0100
parents
children d650eede28b3
comparison
equal deleted inserted replaced
1:8ac7199abbc4 2:57151e2793a2
1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwt.internal.DWTEventListener;
14
15
16 //import java.util.EventListener;
17
18 ///PORTING_TYPE
19 interface EventListener{
20 }
21
22 /**
23 * This interface is the cross-platform version of the
24 * java.util.EventListener interface.
25 * <p>
26 * It is part of our effort to provide support for both J2SE
27 * and J2ME platforms. Under this scheme, classes need to
28 * implement DWTEventListener instead of java.util.EventListener.
29 * </p>
30 * <p>
31 * Note: java.util.EventListener is not part of CDC and CLDC.
32 * </p>
33 */
34 public interface DWTEventListener : EventListener {
35 }