1 /******************************************************************************* 2 * Copyright (c) 2000, 2006 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.core.boot; 12 13 /** 14 * Bootstrap type for the platform. Platform runnables represent executable 15 * entry points into plug-ins. Runnables can be configured into the Platform's 16 * <code>org.eclipse.core.runtime.applications</code> extension-point 17 * or be made available through code or extensions on other plug-in's extension-points. 18 * <p> 19 * Clients may implement this interface. 20 * </p> 21 * @deprecated In Eclipse 3.0 the boot plug-in and packages were deprecated. 22 * This class has been replaced by an equivalent class in the org.eclipse.core.runtime package. 23 * 24 * @see org.eclipse.core.runtime.IPlatformRunnable 25 */ 26 27 public interface IPlatformRunnable extends org.eclipse.core.runtime.IPlatformRunnable { 28 29 } 30