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