blob: a2f1cd6999d4c39a1b7a8d3307f7e60e44090282 [file] [log] [blame]
package org.eclipse.swt.internal;
/*
* Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
import java.util.EventListener;
/**
* This interface is the cross-platform version of the
* java.util.EventListener interface.
* <p>
* It is part of our effort to provide support for both J2SE
* and J2ME platforms. Under this scheme, classes need to
* implement SWTEventListener instead of java.util.EventListener.
* </p>
* <p>
* Note: java.util.EventListener is not part of CDC and CLDC.
* </p>
*/
public interface SWTEventListener extends EventListener {
}