javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/SWTEventListener.java
changeset 21 2a9601315dfc
equal deleted inserted replaced
18:e8e63152f320 21:2a9601315dfc
       
     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  *******************************************************************************/
       
    11 package org.eclipse.swt.internal;
       
    12 
       
    13 
       
    14 /**
       
    15  * This interface is the cross-platform version of the
       
    16  * java.util.EventListener interface.
       
    17  * <p>
       
    18  * It is part of our effort to provide support for both J2SE
       
    19  * and J2ME platforms. Under this scheme, classes need to 
       
    20  * implement SWTEventListener instead of java.util.EventListener.
       
    21  * </p>
       
    22  * <p>
       
    23  * Note: java.util.EventListener is not part of CDC and CLDC.
       
    24  * </p>
       
    25  */
       
    26 public interface SWTEventListener {
       
    27 }