summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java
diff options
context:
space:
mode:
authorChristophe Cornu <chrix>2001-10-04 13:44:42 +0000
committerChristophe Cornu <chrix>2001-10-04 13:44:42 +0000
commit88acae62e27d7ee594f795aa95b0ad631a7267c2 (patch)
tree30db4664dfaa7eee4047365e6561aeff35033327 /bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java
parent8a218da20ca2e70ff494243680fbd8417c9424ac (diff)
downloadeclipse.platform.swt-88acae62e27d7ee594f795aa95b0ad631a7267c2.tar.gz
eclipse.platform.swt-88acae62e27d7ee594f795aa95b0ad631a7267c2.tar.xz
eclipse.platform.swt-88acae62e27d7ee594f795aa95b0ad631a7267c2.zip
new interfaces for j2me compatability
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java b/bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java
new file mode 100644
index 0000000000..7ab0d205bc
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java
@@ -0,0 +1,25 @@
+package org.eclipse.swt.internal;
+
+/*
+ * (c) Copyright IBM Corp. 2000, 2001.
+ * All Rights Reserved
+ */
+
+/**
+ * This interface is the cross-platform version of the
+ * java.lang.Cloneable interface.
+ * <p>
+ * It is part of our effort to provide support for both J2SE
+ * and J2ME platforms. Under this scheme, classes need to
+ * implement CloneableCompatibility instead of java.lang.Cloneable.
+ * </p>
+ * <p>
+ * Note: java.lang.Cloneable is not part of CLDC.
+ * </p>
+ * <p>
+ * IMPORTANT: CDC mandates Cloneable. Behavior on CLDC will have
+ * to be discussed further.
+ * </p>
+ */
+public interface CloneableCompatibility {
+} \ No newline at end of file