summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTEventListener.java
diff options
context:
space:
mode:
authorMike Wilson <mcq>2001-10-16 14:56:00 +0000
committerMike Wilson <mcq>2001-10-16 14:56:00 +0000
commit999b1b05ba0b6c9b36197b7059313c77e32ec2c3 (patch)
tree5d39dc2b56681ee90f634c8f2a7098134855fee7 /bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTEventListener.java
parent0fcb4658c6b24994699e0ab6c01341fbb726fccb (diff)
downloadeclipse.platform.swt-999b1b05ba0b6c9b36197b7059313c77e32ec2c3.tar.gz
eclipse.platform.swt-999b1b05ba0b6c9b36197b7059313c77e32ec2c3.tar.xz
eclipse.platform.swt-999b1b05ba0b6c9b36197b7059313c77e32ec2c3.zip
changed Event...Compatability to SWTEvent...
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTEventListener.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTEventListener.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTEventListener.java b/bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTEventListener.java
new file mode 100644
index 0000000000..9b3b7bbd43
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/SWTEventListener.java
@@ -0,0 +1,23 @@
+package org.eclipse.swt.internal;
+
+/*
+ * (c) Copyright IBM Corp. 2000, 2001.
+ * All Rights Reserved
+ */
+
+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 {
+} \ No newline at end of file