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.lang.Cloneable 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 CloneableCompatibility instead of java.lang.Cloneable. 21 * </p> 22 * <p> 23 * Note: java.lang.Cloneable is not part of CLDC. 24 * </p> 25 * <p> 26 * IMPORTANT: CDC mandates Cloneable. Behavior on CLDC will have 27 * to be discussed further. 28 * </p> 29 */ 30 public interface CloneableCompatibility { 31 } 32