1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 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.debug.ui.actions; 12 13 /** 14 * Interface used to tag objects as launchable. Objects that provide 15 * an adapter of this type will be considered by the contextual 16 * launch support. 17 * <p> 18 * This interface is not intended to be implemented. Instead clients 19 * may contribute an adapter of this type for launchable objects 20 * via the <code>org.eclipse.core.runtime.adapters</code> extension 21 * point. A factory and implementation of this interface are not actually 22 * required. 23 * </p> 24 * @see org.eclipse.debug.ui.actions.ContextualLaunchAction 25 * @since 3.0 26 */ 27 public interface ILaunchable { 28 29 } 30