01: /*******************************************************************************
02: * Copyright (c) 2000, 2003 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.swt.internal;
11:
12: import java.io.Serializable;
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: */
27: public interface SerializableCompatibility extends Serializable {
28: }
|