From 88acae62e27d7ee594f795aa95b0ad631a7267c2 Mon Sep 17 00:00:00 2001 From: Christophe Cornu Date: Thu, 4 Oct 2001 13:44:42 +0000 Subject: new interfaces for j2me compatability --- .../swt/internal/CloneableCompatibility.java | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java (limited to 'bundles/org.eclipse.swt/Eclipse SWT/common_j2me/org/eclipse/swt/internal/CloneableCompatibility.java') 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. + *

+ * 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. + *

+ *

+ * Note: java.lang.Cloneable is not part of CLDC. + *

+ *

+ * IMPORTANT: CDC mandates Cloneable. Behavior on CLDC will have + * to be discussed further. + *

+ */ +public interface CloneableCompatibility { +} \ No newline at end of file -- cgit