]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/SWTEventListener.java
Remove invalid SHA-256-Digests
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / internal / SWTEventListener.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2014 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.swt.internal;
15
16
17 import java.util.EventListener;
18
19 /**
20  * This interface is the cross-platform version of the
21  * java.util.EventListener interface.
22  * <p>
23  * It is part of our effort to provide support for both J2SE
24  * and J2ME platforms. Under this scheme, classes need to
25  * implement SWTEventListener instead of java.util.EventListener.
26  * </p>
27  * <p>
28  * Note: java.util.EventListener is not part of CDC and CLDC.
29  * </p>
30  * @noreference This interface is not intended to be referenced by clients.
31  */
32 public interface SWTEventListener extends EventListener {
33 }